mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
26 lines
393 B
Java
26 lines
393 B
Java
|
|
class Program {
|
|
public static void main(String[] args) {
|
|
int[] arr = {1,2,3};
|
|
final int x = arr.length;
|
|
{
|
|
class C {
|
|
class D {
|
|
int bar() {
|
|
return x;
|
|
}
|
|
}
|
|
}
|
|
|
|
new Runnable() {
|
|
class D {
|
|
int bar() {
|
|
return x;
|
|
}
|
|
}
|
|
|
|
public void run() {}
|
|
}.run();
|
|
}
|
|
}
|
|
} |