github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/struct7.gno (about) 1 package main 2 3 type Opt struct { 4 b bool 5 } 6 7 type T struct { 8 i int 9 opt Opt 10 } 11 12 func main() { 13 a := T{} 14 println(a.i, a.opt.b) 15 } 16 17 // Output: 18 // 0 false