2009-04-18 18:21:00 -06:00
|
|
|
// errchk $G -e $F.go
|
|
|
|
|
|
|
|
// Copyright 2009 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.
|
|
|
|
|
|
|
|
// Incorrect short declarations and redeclarations.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
func f1() int { return 1 }
|
|
|
|
func f2() (float, int) { return 1, 2 }
|
|
|
|
func f3() (float, int, string) { return 1, 2, "3" }
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
{
|
|
|
|
// simple redeclaration
|
|
|
|
i := f1();
|
2009-08-19 15:40:48 -06:00
|
|
|
i := f1(); // ERROR "redeclared|no new"
|
2009-09-15 13:42:24 -06:00
|
|
|
_ = i;
|
2009-04-20 16:23:21 -06:00
|
|
|
}
|
2009-04-18 18:21:00 -06:00
|
|
|
{
|
|
|
|
// change of type for f
|
2009-08-19 15:40:48 -06:00
|
|
|
i, f, s := f3();
|
|
|
|
f, g, t := f3(); // ERROR "redeclared|cannot assign|incompatible"
|
2009-09-15 13:42:24 -06:00
|
|
|
_, _, _, _, _ = i, f, s, g, t;
|
2009-04-18 18:21:00 -06:00
|
|
|
}
|
|
|
|
{
|
|
|
|
// change of type for i
|
2009-08-19 15:40:48 -06:00
|
|
|
i, f, s := f3();
|
|
|
|
j, i, t := f3(); // ERROR "redeclared|cannot assign|incompatible"
|
2009-09-15 13:42:24 -06:00
|
|
|
_, _, _, _, _ = i, f, s, j, t;
|
2009-04-18 18:21:00 -06:00
|
|
|
}
|
|
|
|
{
|
|
|
|
// no new variables
|
|
|
|
i, f, s := f3();
|
2009-08-19 15:40:48 -06:00
|
|
|
i, f := f2(); // ERROR "redeclared|no new"
|
2009-09-15 13:42:24 -06:00
|
|
|
_, _, _ = i, f, s;
|
2009-04-18 18:21:00 -06:00
|
|
|
}
|
|
|
|
{
|
|
|
|
// single redeclaration
|
2009-08-19 15:40:48 -06:00
|
|
|
i, f, s := f3();
|
|
|
|
i := f1(); // ERROR "redeclared|no new|incompatible"
|
2009-09-15 13:42:24 -06:00
|
|
|
_, _, _ = i, f, s;
|
2009-04-18 18:21:00 -06:00
|
|
|
}
|
|
|
|
// double redeclaration
|
|
|
|
{
|
|
|
|
i, f, s := f3();
|
2009-08-19 15:40:48 -06:00
|
|
|
i, f := f2(); // ERROR "redeclared|no new"
|
2009-09-15 13:42:24 -06:00
|
|
|
_, _, _ = i, f, s;
|
2009-04-18 18:21:00 -06:00
|
|
|
}
|
|
|
|
{
|
|
|
|
// triple redeclaration
|
|
|
|
i, f, s := f3();
|
2009-08-19 15:40:48 -06:00
|
|
|
i, f, s := f3(); // ERROR "redeclared|no new"
|
2009-09-15 13:42:24 -06:00
|
|
|
_, _, _ = i, f, s;
|
2009-04-18 18:21:00 -06:00
|
|
|
}
|
|
|
|
}
|