2012-02-18 22:15:42 +01:00
|
|
|
// run
|
2008-12-30 15:03:46 -08:00
|
|
|
|
|
|
|
// 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-05-08 15:21:41 -07:00
|
|
|
import "os"
|
|
|
|
|
2009-01-20 14:40:40 -08:00
|
|
|
type I interface { send(chan <- int) }
|
2008-12-30 15:03:46 -08:00
|
|
|
|
2009-01-20 14:40:40 -08:00
|
|
|
type S struct { v int }
|
2008-12-30 15:03:46 -08:00
|
|
|
func (p *S) send(c chan <- int) { c <- p.v }
|
|
|
|
|
|
|
|
func main() {
|
2009-08-17 13:30:22 -07:00
|
|
|
s := S{0};
|
|
|
|
var i I = &s;
|
|
|
|
c := make(chan int);
|
|
|
|
go i.send(c);
|
|
|
|
os.Exit(<-c);
|
2008-12-30 15:03:46 -08:00
|
|
|
}
|