1
0
mirror of https://github.com/golang/go synced 2024-09-24 21:00:13 -06:00
go/test/fixedbugs/bug252.go
Russ Cox 2ee420fa5e ... changes
R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/2273042
2010-09-24 11:55:48 -04:00

16 lines
315 B
Go

// 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 ...int) {
g(args) // ERROR "[.][.][.]"
}
func g(args ...interface{}) {
f(args) // ERROR "[.][.][.]"
}