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