summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug323.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug323.go')
-rw-r--r--test/fixedbugs/bug323.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/fixedbugs/bug323.go b/test/fixedbugs/bug323.go
index bfb528318..23e2be660 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"
+}