mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
15 lines
140 B
V
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
|
|
}
|