mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
14 lines
252 B
Java
14 lines
252 B
Java
// "Move condition to loop" "true-preview"
|
|
class Main {
|
|
public static void main(String[] args) {
|
|
int i = 0;
|
|
for<caret>(;;) {
|
|
if (i >= 12) {
|
|
break;
|
|
} else {
|
|
i++;
|
|
}
|
|
System.out.println("asda");
|
|
}
|
|
}
|
|
} |