1 2 3 4 5 6 7 8
package main func main() { type s struct { x int; }; var ret s; ret.x = 1; if ret.x != 1 { panic(0) } }