github.com/traefik/yaegi@v0.15.1/_test/struct2.go (about) 1 package main 2 3 type T struct { 4 f int 5 g int 6 } 7 8 func main() { 9 a := T{g: 8, f: 7} 10 println(a.f, a.g) 11 } 12 13 // Output: 14 // 7 8