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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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
}