mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 06:51:01 +07:00
9 lines
182 B
Java
9 lines
182 B
Java
// "Unroll loop" "true-preview"
|
|
class Test {
|
|
void test() {
|
|
fo<caret>r (long i = 0; i <= 10; i++) {
|
|
if (i % 7 == 6) break;
|
|
System.out.println("Hi!" + i);
|
|
}
|
|
}
|
|
} |