mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 5fa9904997f3eade008dae8278ffc44dd0e9172d
9 lines
162 B
Java
9 lines
162 B
Java
// "Unroll loop" "true-preview"
|
|
class X {
|
|
void test() {
|
|
<caret>for (int x : new int[]{1, 2}) {
|
|
int y = x + 1;
|
|
System.out.println(y);
|
|
}
|
|
}
|
|
} |