blob: e8410aff8731bc9d20a7a83bcabeb32efbd3ebd4 [file] [log] [blame]
package other
type ImpP struct{} //@mark(OtherImpP, "ImpP")
func (*ImpP) Laugh() { //@mark(OtherLaughP, "Laugh")
}
type ImpS struct{} //@mark(OtherImpS, "ImpS")
func (ImpS) Laugh() { //@mark(OtherLaughS, "Laugh")
}
type ImpI interface { //@mark(OtherImpI, "ImpI")
Laugh() //@mark(OtherLaughI, "Laugh")
}
type Foo struct {
}
func (Foo) U() { //@mark(ImpU, "U")
}