aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/go.go-torture/execute/go-3.go
blob: af8fa385e47739fd409dff48e6f4a2c52c51c1a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main

type I interface { send(chan <- int) }

type S struct { v int }
func (p *S) send(c chan <- int) { c <- p.v }

func main() {
  s := S{0};
  var i I = &s;
  c := make(chan int);
  go i.send(c);
  if <- c != 0 { panic(0) }
}