mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
8 lines
152 B
Java
8 lines
152 B
Java
// "Unroll loop" "true-preview"
|
|
class Test {
|
|
void test() {
|
|
fo<caret>r (int i = 10; 0 <= i; --i) {
|
|
System.out.println("Hi!" + i);
|
|
}
|
|
}
|
|
} |