Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/libgo/go/cmd/gofmt/testdata/ranges.golden

31 lines
307 B
Text
Raw Normal View History

2023-03-06 14:48:14 +01:00
//gofmt -s
// Test cases for range simplification.
package p
func _() {
for a, b = range x {
}
for a = range x {
}
for _, b = range x {
}
for range x {
}
for a = range x {
}
for range x {
}
for a, b := range x {
}
for a := range x {
}
for _, b := range x {
}
for a := range x {
}
}