go.test: update issue4458.go for recent change

This commit is contained in:
Ian Lance Taylor 2020-09-22 16:36:02 -07:00
parent 5cfb06b61b
commit 5d2d79c8d9

View file

@ -16,5 +16,5 @@ func (T) foo() {}
func main() {
av := T{}
pav := &av
(**T).foo(&pav) // ERROR "no method foo|requires named type or pointer to named"
(**T).foo(&pav) // ERROR "no method|requires named type or pointer to named"
}