From: Ian Lance Taylor Date: Tue, 22 Sep 2020 23:36:02 +0000 (-0700) Subject: go.test: update issue4458.go for recent change X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5d2d79c8d9de06dee6c7fe5782c4d4ac66463773;p=gcc.git go.test: update issue4458.go for recent change --- diff --git a/gcc/testsuite/go.test/test/fixedbugs/issue4458.go b/gcc/testsuite/go.test/test/fixedbugs/issue4458.go index 820f18cb8d7..82b104a0fdf 100644 --- a/gcc/testsuite/go.test/test/fixedbugs/issue4458.go +++ b/gcc/testsuite/go.test/test/fixedbugs/issue4458.go @@ -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" }