(root)/
gcc-13.2.0/
gcc/
testsuite/
go.go-torture/
execute/
method-1.go
package main
type s struct { i int };
func (v *s) val() int { return v.i }
func main() {
  p := new(s);
  if p.val() != 0 { panic(0) }
}