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

func send_one(c chan <- int) {
  c <- 0;
}

func main() {
  c := make(chan int);
  go send_one(c);
  if <-c != 0 { panic(0) }
}