Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / go.test / test / fixedbugs / bug130.go
blob855c7072bc52f89709e39daf42b71650c93b1e38
1 // $G $D/$F.go && $L $F.$A && ./$A.out || echo BUG: should run
3 // Copyright 2009 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
7 package main
9 import "os"
11 type I interface { send(chan <- int) }
13 type S struct { v int }
14 func (p *S) send(c chan <- int) { c <- p.v }
16 func main() {
17 s := S{0};
18 var i I = &s;
19 c := make(chan int);
20 go i.send(c);
21 os.Exit(<-c);