Commit 3a23da65 authored by Russ Cox's avatar Russ Cox

fix build

TBR=austin
OCL=32496
CL=32496
parent 98607d01
......@@ -10,13 +10,6 @@ func main() {
L: ; // ';' terminates empty statement => L does not apply to for loop
for i := 0; i < 10; i++ {
println(i);
break L; // ERROR "L"
}
L1: { // L1 labels block => L1 does not apply to for loop
for i := 0; i < 10; i++ {
println(i);
break L1; // ERROR "L1"
}
break L // L does not apply to for loop
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment