bug252: make ... vs ...T crossing an error, at least for now

R=r
CC=golang-dev
https://golang.org/cl/199066
This commit is contained in:
Russ Cox 2010-02-02 15:00:13 -08:00
parent 44898c7b76
commit 8bef7fdc39
2 changed files with 20 additions and 0 deletions

15
test/fixedbugs/bug252.go Normal file
View file

@ -0,0 +1,15 @@
// errchk $G $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
func f(args ...) {
g(args) // ERROR "[.][.][.] mismatch"
}
func g(args ...interface{}) {
f(args) // ERROR "[.][.][.] mismatch"
}