github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/const7.gno (about) 1 package main 2 3 import "fmt" 4 5 const ( 6 a = iota 7 b 8 c 9 d 10 ) 11 12 type T [c]int 13 14 func main() { 15 fmt.Println(T{}) 16 } 17 18 // Output: 19 // [0 0]