2008-12-30 16:03:46 -07:00
|
|
|
// $G $D/$F.go && $L $F.$A && ./$A.out || echo BUG: should run
|
|
|
|
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
2009-01-16 17:12:14 -07:00
|
|
|
export type I interface { send(chan <- int) }
|
2008-12-30 16:03:46 -07:00
|
|
|
|
2009-01-16 17:12:14 -07:00
|
|
|
export type S struct { v int }
|
2008-12-30 16:03:46 -07:00
|
|
|
func (p *S) send(c chan <- int) { c <- p.v }
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
s := S{0};
|
|
|
|
var i I = &s;
|
2009-01-06 16:19:02 -07:00
|
|
|
c := make(chan int);
|
2008-12-30 16:03:46 -07:00
|
|
|
go i.send(c);
|
2009-01-16 15:58:14 -07:00
|
|
|
sys.Exit(<-c);
|
2008-12-30 16:03:46 -07:00
|
|
|
}
|