mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
17 lines
269 B
Plaintext
17 lines
269 B
Plaintext
public class XXX extends Base {
|
|
int x = 5;
|
|
|
|
public void context() {
|
|
new Object() {
|
|
private void InnerClass() {
|
|
int a = XXX.this.x;
|
|
int b = XXX.super.y;
|
|
}
|
|
}.InnerClass();
|
|
}
|
|
}
|
|
|
|
class Base {
|
|
int y = 7;
|
|
}
|