mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
8 lines
139 B
Java
8 lines
139 B
Java
// "Unroll loop" "true"
|
|
class Test {
|
|
void test() {
|
|
fo<caret>r(int i : new int[] {1,2,3,4}) {
|
|
System.out.println(i);
|
|
}
|
|
}
|
|
} |