2012-02-17 04:49:30 +00:00
|
|
|
// run
|
2009-12-15 22:26:33 +00:00
|
|
|
|
2016-04-10 21:32:26 +00:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
2009-12-15 22:26:33 +00:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
var (
|
2010-03-30 17:34:57 +00:00
|
|
|
nf int
|
2009-12-15 22:26:33 +00:00
|
|
|
x, y, z = f(), f(), f()
|
2010-03-30 17:34:57 +00:00
|
|
|
m = map[string]string{"a": "A"}
|
|
|
|
a, aok = m["a"]
|
|
|
|
b, bok = m["b"]
|
2009-12-15 22:26:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func look(s string) (string, bool) {
|
|
|
|
x, ok := m[s]
|
|
|
|
return x, ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func f() int {
|
|
|
|
nf++
|
|
|
|
return nf
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
if nf != 3 || x != 1 || y != 2 || z != 3 {
|
2010-03-30 17:34:57 +00:00
|
|
|
println("nf=", nf, " x=", x, " y=", y)
|
|
|
|
panic("fail")
|
2009-12-15 22:26:33 +00:00
|
|
|
}
|
|
|
|
if a != "A" || aok != true || b != "" || bok != false {
|
2010-03-30 17:34:57 +00:00
|
|
|
println("a=", a, " aok=", aok, " b=", b, " bok=", bok)
|
|
|
|
panic("fail")
|
2009-12-15 22:26:33 +00:00
|
|
|
}
|
|
|
|
}
|