e31648a4b6
#KT-6476 Fixed
15 lines
429 B
Java
Vendored
15 lines
429 B
Java
Vendored
public class TestClass {
|
|
public static void main(String[] args) {
|
|
OuterLoop1:
|
|
OuterLoop2:
|
|
for (int i = 1; i < 1000; i *= 2) {
|
|
InnerLoop:
|
|
for (int j = 1; j < 100; j *= 3) {
|
|
if (j == 3) continue InnerLoop;
|
|
if (i == j) continue OuterLoop1;
|
|
System.err.println(j);
|
|
if (j == 9) continue;
|
|
}
|
|
}
|
|
}
|
|
} |