2012-02-16 23:48:57 -05:00
|
|
|
// errorcheck
|
2010-02-01 00:25:59 -08:00
|
|
|
|
2016-04-10 14:32:26 -07:00
|
|
|
// Copyright 2010 The Go Authors. All rights reserved.
|
2010-02-01 00:25:59 -08:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2012-02-19 14:28:53 +11:00
|
|
|
// Verify that illegal uses of ... are detected.
|
|
|
|
// Does not compile.
|
|
|
|
|
2010-02-01 00:25:59 -08:00
|
|
|
package main
|
|
|
|
|
2010-09-24 11:55:30 -04:00
|
|
|
import "unsafe"
|
|
|
|
|
2010-02-01 00:25:59 -08:00
|
|
|
func sum(args ...int) int { return 0 }
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ = sum(1, 2, 3)
|
|
|
|
_ = sum()
|
|
|
|
_ = sum(1.0, 2.0)
|
2021-05-29 19:54:10 +00:00
|
|
|
_ = sum(1.5) // ERROR "1\.5 .untyped float constant. as int|integer"
|
|
|
|
_ = sum("hello") // ERROR ".hello. (.untyped string constant. as int|.type untyped string. as type int)|incompatible"
|
2022-09-28 14:13:24 -07:00
|
|
|
_ = sum([]int{1}) // ERROR "\[\]int{.*}.*as int value"
|
2010-02-01 00:25:59 -08:00
|
|
|
)
|
|
|
|
|
2012-07-13 08:05:41 +02:00
|
|
|
func sum3(int, int, int) int { return 0 }
|
|
|
|
func tuple() (int, int, int) { return 1, 2, 3 }
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ = sum(tuple())
|
2021-05-29 19:54:10 +00:00
|
|
|
_ = sum(tuple()...) // ERROR "\.{3} with 3-valued|multiple-value"
|
2012-07-13 08:05:41 +02:00
|
|
|
_ = sum3(tuple())
|
2021-05-29 19:54:10 +00:00
|
|
|
_ = sum3(tuple()...) // ERROR "\.{3} in call to non-variadic|multiple-value|invalid use of .*[.][.][.]"
|
2012-07-13 08:05:41 +02:00
|
|
|
)
|
|
|
|
|
2010-02-01 00:25:59 -08:00
|
|
|
type T []T
|
|
|
|
|
|
|
|
func funny(args ...T) int { return 0 }
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ = funny(nil)
|
|
|
|
_ = funny(nil, nil)
|
|
|
|
_ = funny([]T{}) // ok because []T{} is a T; passes []T{[]T{}}
|
|
|
|
)
|
2010-09-24 11:55:30 -04:00
|
|
|
|
2017-04-22 15:28:58 +02:00
|
|
|
func Foo(n int) {}
|
|
|
|
|
2010-09-24 11:55:30 -04:00
|
|
|
func bad(args ...int) {
|
|
|
|
print(1, 2, args...) // ERROR "[.][.][.]"
|
|
|
|
println(args...) // ERROR "[.][.][.]"
|
|
|
|
ch := make(chan int)
|
|
|
|
close(ch...) // ERROR "[.][.][.]"
|
|
|
|
_ = len(args...) // ERROR "[.][.][.]"
|
|
|
|
_ = new(int...) // ERROR "[.][.][.]"
|
|
|
|
n := 10
|
|
|
|
_ = make([]byte, n...) // ERROR "[.][.][.]"
|
2017-08-11 14:00:08 +02:00
|
|
|
_ = make([]byte, 10 ...) // ERROR "[.][.][.]"
|
2010-09-24 11:55:30 -04:00
|
|
|
var x int
|
|
|
|
_ = unsafe.Pointer(&x...) // ERROR "[.][.][.]"
|
|
|
|
_ = unsafe.Sizeof(x...) // ERROR "[.][.][.]"
|
2011-05-31 15:41:47 -04:00
|
|
|
_ = [...]byte("foo") // ERROR "[.][.][.]"
|
2011-07-26 00:52:02 -04:00
|
|
|
_ = [...][...]int{{1,2,3},{4,5,6}} // ERROR "[.][.][.]"
|
2017-04-22 15:28:58 +02:00
|
|
|
|
2021-05-29 19:54:10 +00:00
|
|
|
Foo(x...) // ERROR "\.{3} in call to non-variadic|invalid use of .*[.][.][.]"
|
2010-09-24 11:55:30 -04:00
|
|
|
}
|