aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue6750.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue6750.go')
-rw-r--r--test/fixedbugs/issue6750.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/issue6750.go b/test/fixedbugs/issue6750.go
index dbbb454435..f62a85009c 100644
--- a/test/fixedbugs/issue6750.go
+++ b/test/fixedbugs/issue6750.go
@@ -18,5 +18,5 @@ func printmany(nums ...int) {
func main() {
printmany(1, 2, 3)
printmany([]int{1, 2, 3}...)
- printmany(1, "abc", []int{2, 3}...) // ERROR "too many arguments in call to printmany\n\thave \(number, string, \[\]int\.\.\.\)\n\twant \(...int\)"
+ printmany(1, "abc", []int{2, 3}...) // ERROR "too many arguments in call to printmany\n\thave \(number, string, \.\.\.int\)\n\twant \(...int\)"
}