summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug232.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/bug232.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/bug232.go')
-rw-r--r--test/fixedbugs/bug232.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug232.go b/test/fixedbugs/bug232.go
index c0b8eb69a..99bd02ff6 100644
--- a/test/fixedbugs/bug232.go
+++ b/test/fixedbugs/bug232.go
@@ -5,4 +5,4 @@
// license that can be found in the LICENSE file.
package main
-type I interface { X(...) }
+type I interface { X(...int) }