1
0
mirror of https://github.com/golang/go synced 2024-09-28 22:24:29 -06:00
go/test/chan/select4.go
2010-09-27 12:04:21 -04:00

26 lines
321 B
Go

// $G $D/$F.go && $L $F.$A && ./$A.out
package main
func f() *int {
println("BUG: called f")
return new(int)
}
func main() {
var x struct {
a int
}
c := make(chan int, 1)
c1 := make(chan int)
c <- 42
select {
case *f() = <-c1:
// nothing
case x.a = <-c:
if x.a != 42 {
println("BUG:", x.a)
}
}
}