1
0
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:
Uwe Krüger
2021-02-04 00:07:20 +01:00
committed by GitHub
parent f013e65670
commit 112c652ace
2 changed files with 18 additions and 0 deletions

View 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
}