1
0
mirror of https://github.com/golang/go synced 2024-10-04 06:21:23 -06:00
go/test/fixedbugs/bug367.dir/p.go

16 lines
128 B
Go
Raw Normal View History

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