summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug252.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug252.go')
-rw-r--r--test/fixedbugs/bug252.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixedbugs/bug252.go b/test/fixedbugs/bug252.go
index 5615f84fa..a2c1dab9d 100644
--- a/test/fixedbugs/bug252.go
+++ b/test/fixedbugs/bug252.go
@@ -7,9 +7,9 @@
package main
func f(args ...int) {
- g(args) // ERROR "[.][.][.]"
+ g(args)
}
func g(args ...interface{}) {
- f(args) // ERROR "[.][.][.]"
+ f(args) // ERROR "cannot use|incompatible"
}