github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/type18.gno (about) 1 package main 2 3 type T struct { 4 name string 5 size int 6 } 7 8 var table = []*T{{ 9 name: "foo", 10 size: 2, 11 }} 12 13 var s = table[0].size 14 15 func main() { 16 println(s) 17 } 18 19 // Output: 20 // 2