github.com/zxy12/golang151_with_comment@v0.0.0-20190507085033-721809559d3c/cmd/api/testdata/src/pkg/p2/p2.go (about)

     1  package p2
     2  
     3  type Twoer interface {
     4  	PackageTwoMeth()
     5  }
     6  
     7  func F() string               {}
     8  func G() Twoer                {}
     9  func NewError(s string) error {}