blob: c8772d2d051543b217f55130aa0d74ec115905c4 [file] [log] [blame]
package p
type T struct{ x int }
type S struct{}
func (p *S) get() {
}
type I interface {
get()
}
func F(i I) {
i.get()
}