github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/backup/type5.gno (about) 1 package main 2 3 import ( 4 "fmt" 5 "reflect" 6 ) 7 8 type T int 9 10 func main() { 11 a := T(12) 12 fmt.Println(reflect.TypeOf(a)) 13 } 14 15 // Output: 16 // int