mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
15 lines
181 B
Java
15 lines
181 B
Java
class A4 {
|
|
protected final int <caret>a = 1;
|
|
}
|
|
|
|
class B {
|
|
void main() {
|
|
final int b = 2;
|
|
new A4() {
|
|
void m() {
|
|
System.out.println(b);
|
|
}
|
|
};
|
|
}
|
|
}
|