1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/sync/struct_chan_init_test.v
2022-11-05 10:46:40 +03:00

15 lines
140 B
V

struct Abc {
ch chan int
}
fn f(st Abc) {
st.ch <- 47
}
fn test_chan_init() {
st := Abc{}
spawn f(st)
i := <-st.ch
assert i == 47
}