1 2 3 4 5 6 7 8 9
j = 0; out1: for (i = 0; ; j++) if (j == 50) break out1; while (++i < 100) {} assertEq(j, 50); assertEq(i, 100);