2012-02-17 04:48:57 +00:00
|
|
|
// run
|
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 correct short declarations and redeclarations.
|
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
|
|
|
|
2009-04-20 04:12:13 +00:00
|
|
|
func x() (s string) {
|
2010-09-04 00:36:13 +00:00
|
|
|
a, b, s := f3()
|
|
|
|
_, _ = a, b
|
2011-01-20 04:09:00 +00:00
|
|
|
return // tests that result var is in scope for redeclaration
|
2009-04-20 04:12:13 +00:00
|
|
|
}
|
|
|
|
|
2009-04-19 00:21:00 +00:00
|
|
|
func main() {
|
2010-09-04 00:36:13 +00:00
|
|
|
i, f, s := f3()
|
2011-01-20 04:09:00 +00:00
|
|
|
j, f := f2() // redeclare f
|
2010-09-04 00:36:13 +00:00
|
|
|
k := f1()
|
|
|
|
m, g, s := f3()
|
|
|
|
m, h, s := f3()
|
2009-04-19 00:21:00 +00:00
|
|
|
{
|
|
|
|
// new block should be ok.
|
2010-09-04 00:36:13 +00:00
|
|
|
i, f, s := f3()
|
2011-01-20 04:09:00 +00:00
|
|
|
j, f := f2() // redeclare f
|
2010-09-04 00:36:13 +00:00
|
|
|
k := f1()
|
|
|
|
m, g, s := f3()
|
|
|
|
m, h, s := f3()
|
|
|
|
_, _, _, _, _, _, _, _, _ = i, f, s, j, k, m, g, s, h
|
2009-04-19 00:21:00 +00:00
|
|
|
}
|
2013-02-12 18:17:49 +00:00
|
|
|
if y := x(); y != "3" {
|
|
|
|
println("x() failed", y)
|
|
|
|
panic("fail")
|
2009-04-20 04:12:13 +00:00
|
|
|
}
|
2010-09-04 00:36:13 +00:00
|
|
|
_, _, _, _, _, _, _, _, _ = i, f, s, j, k, m, g, s, h
|
2009-04-19 00:21:00 +00:00
|
|
|
}
|