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