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