mirror of
https://github.com/vlang/v.git
synced 2025-09-16 07:52:32 +03:00
cgen: auto initialize chan
that are struct elements (#8541)
This commit is contained in:
parent
f013e65670
commit
112c652ace
2 changed files with 18 additions and 0 deletions
14
vlib/sync/struct_chan_init_test.v
Normal file
14
vlib/sync/struct_chan_init_test.v
Normal file
|
@ -0,0 +1,14 @@
|
|||
struct Abc {
|
||||
ch chan int
|
||||
}
|
||||
|
||||
fn f(st Abc) {
|
||||
st.ch <- 47
|
||||
}
|
||||
|
||||
fn test_chan_init() {
|
||||
st := Abc{}
|
||||
go f(st)
|
||||
i := <-st.ch
|
||||
assert i == 47
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue