diff --git a/test/fixedbugs/bug323.go b/test/fixedbugs/bug323.go index bfb528318aa..23e2be6603a 100644 --- a/test/fixedbugs/bug323.go +++ b/test/fixedbugs/bug323.go @@ -15,6 +15,6 @@ func (t T) Meth2() {} func main() { t := &T{} p := P(t) - p.Meth() // ERROR "undefined \(type P" - p.Meth2() // ERROR "undefined \(type P" -} \ No newline at end of file + p.Meth() // ERROR "undefined" + p.Meth2() // ERROR "undefined" +}