blob: 32c5812ae1bfdbb1299a56977c0e303e47bd7579 [file] [log] [blame]
public class TestClass {
public static void main(String[] args) {
for (int i = 0; i < 10; ++i) {
if (i == 4 || i == 8) {
i++;
continue;
}
System.err.println(i);
}
}
}