2012-02-17 04:48:57 +00:00
|
|
|
// errorcheck
|
2010-02-01 08:25:59 +00:00
|
|
|
|
2016-04-10 21:32:26 +00:00
|
|
|
// Copyright 2010 The Go Authors. All rights reserved.
|
2010-02-01 08:25:59 +00:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2012-02-19 03:28:53 +00:00
|
|
|
// Verify that illegal uses of ... are detected.
|
|
|
|
// Does not compile.
|
|
|
|
|
2010-02-01 08:25:59 +00:00
|
|
|
package main
|
|
|
|
|
2010-09-24 15:55:30 +00:00
|
|
|
import "unsafe"
|
|
|
|
|
2010-02-01 08:25:59 +00:00
|
|
|
func sum(args ...int) int { return 0 }
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ = sum(1, 2, 3)
|
|
|
|
_ = sum()
|
|
|
|
_ = sum(1.0, 2.0)
|
|
|
|
_ = sum(1.5) // ERROR "integer"
|
2011-12-14 16:34:35 +00:00
|
|
|
_ = sum("hello") // ERROR ".hello. .type string. as type int|incompatible"
|
2011-10-08 17:37:06 +00:00
|
|
|
_ = sum([]int{1}) // ERROR "\[\]int literal.*as type int|incompatible"
|
2010-02-01 08:25:59 +00:00
|
|
|
)
|
|
|
|
|
2012-07-13 06:05:41 +00:00
|
|
|
func sum3(int, int, int) int { return 0 }
|
|
|
|
func tuple() (int, int, int) { return 1, 2, 3 }
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ = sum(tuple())
|
2016-10-28 21:22:13 +00:00
|
|
|
_ = sum(tuple()...) // ERROR "multiple-value"
|
2012-07-13 06:05:41 +00:00
|
|
|
_ = sum3(tuple())
|
2016-10-28 21:22:13 +00:00
|
|
|
_ = sum3(tuple()...) // ERROR "multiple-value" "not enough"
|
2012-07-13 06:05:41 +00:00
|
|
|
)
|
|
|
|
|
2010-02-01 08:25:59 +00: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 15:55:30 +00:00
|
|
|
|
2017-04-22 13:28:58 +00:00
|
|
|
func Foo(n int) {}
|
|
|
|
|
2010-09-24 15:55:30 +00: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 12:00:08 +00:00
|
|
|
_ = make([]byte, 10 ...) // ERROR "[.][.][.]"
|
2010-09-24 15:55:30 +00:00
|
|
|
var x int
|
|
|
|
_ = unsafe.Pointer(&x...) // ERROR "[.][.][.]"
|
|
|
|
_ = unsafe.Sizeof(x...) // ERROR "[.][.][.]"
|
2011-05-31 19:41:47 +00:00
|
|
|
_ = [...]byte("foo") // ERROR "[.][.][.]"
|
2011-07-26 04:52:02 +00:00
|
|
|
_ = [...][...]int{{1,2,3},{4,5,6}} // ERROR "[.][.][.]"
|
2017-04-22 13:28:58 +00:00
|
|
|
|
|
|
|
Foo(x...) // ERROR "invalid use of [.][.][.] in call"
|
2010-09-24 15:55:30 +00:00
|
|
|
}
|