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

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