(root)/
gcc-13.2.0/
gcc/
testsuite/
go.go-torture/
execute/
function-2.go
package main

func subr(p int) int {
  return p
}

func main() {
  if subr(0) != 0 { panic(0) }
}