v/vlib/sync/struct_chan_init_test.v

15 lines
137 B
V

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
}