2012-02-17 04:48:57 +00:00
|
|
|
// errorcheck
|
2009-04-19 00:21:00 +00:00
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
2012-02-19 03:28:53 +00:00
|
|
|
// Test that incorrect short declarations and redeclarations are detected.
|
|
|
|
// Does not compile.
|
2009-04-19 00:21:00 +00:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
2011-01-20 04:09:00 +00:00
|
|
|
func f1() int { return 1 }
|
|
|
|
func f2() (float32, int) { return 1, 2 }
|
|
|
|
func f3() (float32, int, string) { return 1, 2, "3" }
|
2009-04-19 00:21:00 +00:00
|
|
|
|
|
|
|
func main() {
|
|
|
|
{
|
|
|
|
// simple redeclaration
|
2010-09-04 00:36:13 +00:00
|
|
|
i := f1()
|
2011-01-20 04:09:00 +00:00
|
|
|
i := f1() // ERROR "redeclared|no new"
|
2010-09-04 00:36:13 +00:00
|
|
|
_ = i
|
2009-04-20 22:23:21 +00:00
|
|
|
}
|
2009-04-19 00:21:00 +00:00
|
|
|
{
|
|
|
|
// change of type for f
|
2010-09-04 00:36:13 +00:00
|
|
|
i, f, s := f3()
|
2021-06-13 15:28:44 +00:00
|
|
|
f, g, t := f3() // ERROR "redeclared|cannot assign|incompatible|cannot use"
|
2010-09-04 00:36:13 +00:00
|
|
|
_, _, _, _, _ = i, f, s, g, t
|
2009-04-19 00:21:00 +00:00
|
|
|
}
|
|
|
|
{
|
|
|
|
// change of type for i
|
2010-09-04 00:36:13 +00:00
|
|
|
i, f, s := f3()
|
2021-06-13 15:28:44 +00:00
|
|
|
j, i, t := f3() // ERROR "redeclared|cannot assign|incompatible|cannot use"
|
2010-09-04 00:36:13 +00:00
|
|
|
_, _, _, _, _ = i, f, s, j, t
|
2009-04-19 00:21:00 +00:00
|
|
|
}
|
|
|
|
{
|
|
|
|
// no new variables
|
2010-09-04 00:36:13 +00:00
|
|
|
i, f, s := f3()
|
2011-01-20 04:09:00 +00:00
|
|
|
i, f := f2() // ERROR "redeclared|no new"
|
2010-09-04 00:36:13 +00:00
|
|
|
_, _, _ = i, f, s
|
2009-04-19 00:21:00 +00:00
|
|
|
}
|
2012-07-30 02:24:19 +00:00
|
|
|
{
|
|
|
|
// multiline no new variables
|
|
|
|
i := f1
|
2012-10-07 19:52:57 +00:00
|
|
|
i := func() int { // ERROR "redeclared|no new|incompatible"
|
|
|
|
return 0
|
2012-07-30 02:24:19 +00:00
|
|
|
}
|
2012-09-28 15:30:30 +00:00
|
|
|
_ = i
|
2012-07-30 02:24:19 +00:00
|
|
|
}
|
2009-04-19 00:21:00 +00:00
|
|
|
{
|
|
|
|
// single redeclaration
|
2010-09-04 00:36:13 +00:00
|
|
|
i, f, s := f3()
|
2011-08-16 15:14:26 +00:00
|
|
|
i := 1 // ERROR "redeclared|no new|incompatible"
|
2010-09-04 00:36:13 +00:00
|
|
|
_, _, _ = i, f, s
|
2009-04-19 00:21:00 +00:00
|
|
|
}
|
2011-01-20 04:09:00 +00:00
|
|
|
// double redeclaration
|
2009-04-19 00:21:00 +00:00
|
|
|
{
|
2010-09-04 00:36:13 +00:00
|
|
|
i, f, s := f3()
|
2011-01-20 04:09:00 +00:00
|
|
|
i, f := f2() // ERROR "redeclared|no new"
|
2010-09-04 00:36:13 +00:00
|
|
|
_, _, _ = i, f, s
|
2009-04-19 00:21:00 +00:00
|
|
|
}
|
|
|
|
{
|
|
|
|
// triple redeclaration
|
2010-09-04 00:36:13 +00:00
|
|
|
i, f, s := f3()
|
2011-01-20 04:09:00 +00:00
|
|
|
i, f, s := f3() // ERROR "redeclared|no new"
|
2010-09-04 00:36:13 +00:00
|
|
|
_, _, _ = i, f, s
|
2009-04-19 00:21:00 +00:00
|
|
|
}
|
|
|
|
}
|