BLACKSITE
:
216.73.217.97
:
195.35.60.27 / alpastrology.co.in
:
Linux us-imm-web1066.main-hosting.eu 4.18.0-553.109.1.lve.el8.x86_64 #1 SMP Thu Mar 5 20:23:46 UTC 2026 x86_64
:
/
opt
/
golang
/
1.19.4
/
test
/
Upload File:
files >> //opt/golang/1.19.4/test/funcdup2.go
// errorcheck // Copyright 2013 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 p var T interface { 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" } 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"