mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
9 lines
173 B
Java
9 lines
173 B
Java
// "Unroll loop" "true-preview"
|
|
class Test {
|
|
void test() {
|
|
fo<caret>r (int i = 0; i != 10; i++ // line comment
|
|
) {
|
|
System.out.println("Hi!" + i);
|
|
}
|
|
}
|
|
} |