mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
16 lines
363 B
Java
16 lines
363 B
Java
// "Invert 'if' condition" "true-preview"
|
|
class A {
|
|
void foo () {
|
|
outer: for(int i = 0; i < 5; i++) {
|
|
for(int j = 0; j < 5; j++) {
|
|
if (j != 3) {
|
|
System.out.println("J:" + j);
|
|
}
|
|
else {
|
|
continue outer;
|
|
}
|
|
}
|
|
System.out.println("I:" + i);
|
|
}
|
|
}
|
|
} |