commit | 6672b40c099c6c55d000324b873fecb4d9880563 | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Mon Jun 14 11:23:11 2010 -0700 |
committer | Russ Cox <rsc@golang.org> | Mon Jun 14 11:23:11 2010 -0700 |
tree | b3ec9ceb623fba7388f5020cc090298bf63350d5 | |
parent | 44a17e9df70d753b96cf6058ededca427b411ee9 [diff] [blame] |
remove uses of ... from tree, add one test R=r CC=golang-dev https://golang.org/cl/1662041
diff --git a/test/fixedbugs/bug252.go b/test/fixedbugs/bug252.go index 7ed8b87..bd11b86 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" }