summaryrefslogtreecommitdiff
path: root/gcc/testsuite/go.go-torture/execute/go-3.go
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/go.go-torture/execute/go-3.go')
-rw-r--r--gcc/testsuite/go.go-torture/execute/go-3.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/gcc/testsuite/go.go-torture/execute/go-3.go b/gcc/testsuite/go.go-torture/execute/go-3.go
new file mode 100644
index 000000000..af8fa385e
--- /dev/null
+++ b/gcc/testsuite/go.go-torture/execute/go-3.go
@@ -0,0 +1,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) }
+}