github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/composite14.gno (about) 1 package main 2 3 import "fmt" 4 5 type T struct { 6 b []byte 7 } 8 9 func main() { 10 t := T{nil} 11 fmt.Println(t) 12 } 13 14 // Output: 15 // {[]}