go.tools/go/types: add test case for resolution of blank methods
(was bug on go/types wishlist; probably fixed a while ago) R=adonovan CC=golang-dev https://golang.org/cl/13633047
This commit is contained in:
parent
5db6491e90
commit
cf1e27bbda
|
@ -53,6 +53,12 @@ var sources = []string{
|
|||
}
|
||||
}
|
||||
`,
|
||||
`
|
||||
package p
|
||||
type S struct{}
|
||||
func (T) _() {}
|
||||
func (T) _() {}
|
||||
`,
|
||||
}
|
||||
|
||||
var pkgnames = []string{
|
||||
|
|
Loading…
Reference in New Issue