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 bd11b86eb..5615f84fa 100644
--- a/test/fixedbugs/bug252.go
+++ b/test/fixedbugs/bug252.go
@@ -7,9 +7,9 @@
package main
func f(args ...int) {
- g(args) // ERROR "[.][.][.] mismatch"
+ g(args) // ERROR "[.][.][.]"
}
func g(args ...interface{}) {
- f(args) // ERROR "[.][.][.] mismatch"
+ f(args) // ERROR "[.][.][.]"
}