URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [go.go-torture/] [execute/] [chan-1.go] - Rev 830
Go to most recent revision | Compare with Previous | Blame | View Log
package main
func main() {
c := make(chan int, 1);
c <- 0;
if <-c != 0 { panic(0) }
}
Go to most recent revision | Compare with Previous | Blame | View Log