summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug252.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2011-03-25 18:31:55 -0700
committerIan Lance Taylor <iant@golang.org>2011-03-25 18:31:55 -0700
commit760363c9ae83af5abdd3189d5a60fbab0c2a6f23 (patch)
tree377be2c1ced0da7f3e240481bf32d51f3b17bf21 /test/fixedbugs/bug252.go
parentc79dc1f5cce9903116e21f7ec19f0ab1a2798092 (diff)
downloadgo-760363c9ae83af5abdd3189d5a60fbab0c2a6f23.tar.gz
gc: remove interim ... error which rejects valid code.
It's been six months. R=rsc CC=golang-dev http://codereview.appspot.com/4289073
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"
}