blob: 90775fd283b9ea232274b32e55d1583c8b6b1fd2 [file] [log] [blame] [edit]
//
PACKAGE issue62640
IMPORTPATH
testdata/issue62640
FILENAMES
testdata/issue62640.go
TYPES
//
type E struct{}
// F should be hidden within S because of the S.F field.
func (E) F()
//
type S struct {
E
F int
}