mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
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 {}
|
|
}
|
|
} |