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 820f18cb8d7853baf283d055b5b614274465dc69..82b104a0fdf261146434345923ae368a3a7a304b 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"
 }