2013-03-15 13:24:13 -06:00
|
|
|
// errorcheck
|
|
|
|
|
2016-04-10 15:32:26 -06:00
|
|
|
// Copyright 2013 The Go Authors. All rights reserved.
|
2013-03-15 13:24:13 -06:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package p
|
|
|
|
|
|
|
|
var T interface {
|
2020-12-03 19:15:50 -07:00
|
|
|
F1(i int) (i int) // ERROR "duplicate argument i|redefinition|previous|redeclared"
|
|
|
|
F2(i, i int) // ERROR "duplicate argument i|redefinition|previous|redeclared"
|
|
|
|
F3() (i, i int) // ERROR "duplicate argument i|redefinition|previous|redeclared"
|
2013-03-15 13:24:13 -06:00
|
|
|
}
|
|
|
|
|
2020-12-03 19:15:50 -07:00
|
|
|
var T1 func(i, i int) // ERROR "duplicate argument i|redefinition|previous|redeclared"
|
|
|
|
var T2 func(i int) (i int) // ERROR "duplicate argument i|redefinition|previous|redeclared"
|
|
|
|
var T3 func() (i, i int) // ERROR "duplicate argument i|redefinition|previous|redeclared"
|