
This fixes the new loop variable behavior in Go 1.22. Specifically: * The compiler (actually, the x/tools/go/ssa package) now correctly picks up the Go version. * If a module doesn't specify the Go version, the current Go version (from the `go` tool and standard library) is used. This fixes `go run`. * The tests in testdata/ that use a separate directory are now actually run in that directory. This makes it possible to use a go.mod file there. * There is a test to make sure old Go modules still work with the old Go behavior, even on a newer Go version.
31 строка
507 Б
Go
31 строка
507 Б
Go
package main
|
|
|
|
func main() {
|
|
testIntegerRange()
|
|
testLoopVar()
|
|
}
|
|
|
|
func testIntegerRange() {
|
|
for i := range 10 {
|
|
println(10 - i)
|
|
}
|
|
println("go1.22 has lift-off!")
|
|
}
|
|
|
|
func testLoopVar() {
|
|
var f func() int
|
|
for i := 0; i < 1; i++ {
|
|
if i == 0 {
|
|
f = func() int { return i }
|
|
}
|
|
}
|
|
// Variable n is 1 in Go 1.21, or 0 in Go 1.22.
|
|
n := f()
|
|
if n == 0 {
|
|
println("loops behave like Go 1.22")
|
|
} else if n == 1 {
|
|
println("loops behave like Go 1.21")
|
|
} else {
|
|
println("unknown loop behavior")
|
|
}
|
|
}
|