1// run
2
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.
6
7package main
8
9import "os"
10
11type I interface { send(chan <- int) }
12
13type S struct { v int }
14func (p *S) send(c chan <- int) { c <- p.v }
15
16func main() {
17	s := S{0};
18	var i I = &s;
19	c := make(chan int);
20	go i.send(c);
21	os.Exit(<-c);
22}
23