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