go.test: update issue4458.go for recent change
authorIan Lance Taylor <iant@golang.org>
Tue, 22 Sep 2020 23:36:02 +0000 (16:36 -0700)
committerIan Lance Taylor <iant@golang.org>
Tue, 22 Sep 2020 23:36:44 +0000 (16:36 -0700)
gcc/testsuite/go.test/test/fixedbugs/issue4458.go

index 820f18c..82b104a 100644 (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"
 }