mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
15 lines
280 B
Java
15 lines
280 B
Java
// "Move condition to loop" "false"
|
|
class Main {
|
|
public static void main(String[] args) {
|
|
int i = 0;
|
|
int j = 0;
|
|
annoyingLabel: while(j++ < 100) {
|
|
while<caret>(true) {
|
|
i++;
|
|
if(i < 0) {
|
|
break annoyingLabel;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |