(root)/
gcc-13.2.0/
gcc/
testsuite/
go.go-torture/
execute/
struct-1.go
package main

func main() {
  type s struct { x int; };
  var ret s;
  ret.x = 1;
  if ret.x != 1 { panic(0) }
}