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
|
|
|
|
|
|
|
|
type 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
|
|
|
type T1 func(i, i int) // ERROR "duplicate argument i|redefinition|previous|redeclared"
|
|
|
|
type T2 func(i int) (i int) // ERROR "duplicate argument i|redefinition|previous|redeclared"
|
|
|
|
type T3 func() (i, i int) // ERROR "duplicate argument i|redefinition|previous|redeclared"
|
2013-03-15 13:24:13 -06:00
|
|
|
|
|
|
|
type R struct{}
|
|
|
|
|
2020-12-03 19:15:50 -07:00
|
|
|
func (i *R) F1(i int) {} // ERROR "duplicate argument i|redefinition|previous|redeclared"
|
|
|
|
func (i *R) F2() (i int) {return 0} // ERROR "duplicate argument i|redefinition|previous|redeclared"
|
|
|
|
func (i *R) F3(j int) (j int) {return 0} // ERROR "duplicate argument j|redefinition|previous|redeclared"
|
2013-03-15 13:24:13 -06:00
|
|
|
|
2020-12-03 19:15:50 -07:00
|
|
|
func F1(i, i int) {} // ERROR "duplicate argument i|redefinition|previous|redeclared"
|
|
|
|
func F2(i int) (i int) {return 0} // ERROR "duplicate argument i|redefinition|previous|redeclared"
|
|
|
|
func F3() (i, i int) {return 0, 0} // ERROR "duplicate argument i|redefinition|previous|redeclared"
|