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