mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 314a8f32ca768b18f337bc584b1a8bfe3941248e
11 lines
167 B
Java
11 lines
167 B
Java
// "Unroll loop" "true-preview"
|
|
class X {
|
|
void test() {
|
|
<caret>for (int x : new int[]{1}) {
|
|
class Y {
|
|
int a = x;
|
|
}
|
|
}
|
|
class Y {}
|
|
}
|
|
} |