2010-02-01 08:25:59 +00:00
|
|
|
// errchk $G -e $D/$F.go
|
|
|
|
|
|
|
|
// Copyright 2010 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
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-04-02 00:52:38 +00:00
|
|
|
_ = sum("hello") // ERROR "string.*as type int|incompatible"
|
2010-02-06 02:38:27 +00:00
|
|
|
_ = sum([]int{1}) // ERROR "slice literal.*as type int|incompatible"
|
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
|
|
|
|
|
|
|
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 "[.][.][.]"
|
|
|
|
// TODO(rsc): enable after gofmt bug is fixed
|
|
|
|
// _ = make([]byte, 10 ...) // error "[.][.][.]"
|
|
|
|
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 "[.][.][.]"
|
2010-09-24 15:55:30 +00:00
|
|
|
}
|
2011-07-26 04:52:02 +00:00
|
|
|
|