go/test/fixedbugs/bug367.dir/p.go
Russ Cox 1cb7f85d74 gc: 0 expected bugs
Now that Luuk's qualified exporting code
is in, fixing this bug is trivial.

R=ken2
CC=golang-dev
https://golang.org/cl/5479048
2011-12-09 14:58:28 -05:00

16 lines
128 B
Go

package p
type T struct{ x int }
type S struct{}
func (p *S) get() {
}
type I interface {
get()
}
func F(i I) {
i.get()
}