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:
Robert Griesemer 2013-09-16 13:18:56 -07:00
parent 5db6491e90
commit cf1e27bbda

View File

@ -53,6 +53,12 @@ var sources = []string{
}
}
`,
`
package p
type S struct{}
func (T) _() {}
func (T) _() {}
`,
}
var pkgnames = []string{