mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
cgen: auto initialize chan
that are struct elements (#8541)
This commit is contained in:
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
|
||||
}
|
Reference in New Issue
Block a user