summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug252.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-06-14 11:23:11 -0700
committerRuss Cox <rsc@golang.org>2010-06-14 11:23:11 -0700
commit656ddf0e0a1fd8fc56d3a02be66a5a259744d6d4 (patch)
treed7b24b60e0d16267bda654b344fcd0ab5e637159 /test/fixedbugs/bug252.go
parent5be6521d14c112e5b55f6cd4bd591b619ea9e29d (diff)
downloadgolang-656ddf0e0a1fd8fc56d3a02be66a5a259744d6d4.tar.gz
remove uses of ... from tree, add one test
R=r CC=golang-dev http://codereview.appspot.com/1662041
Diffstat (limited to 'test/fixedbugs/bug252.go')
-rw-r--r--test/fixedbugs/bug252.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug252.go b/test/fixedbugs/bug252.go
index 7ed8b87cb..bd11b86eb 100644
--- a/test/fixedbugs/bug252.go
+++ b/test/fixedbugs/bug252.go
@@ -6,7 +6,7 @@
package main
-func f(args ...) {
+func f(args ...int) {
g(args) // ERROR "[.][.][.] mismatch"
}