mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
26 lines
425 B
Java
26 lines
425 B
Java
public class m {
|
|
void aa(){}
|
|
}
|
|
|
|
class Outer extends m{
|
|
static class Inner extends Super {
|
|
private Outer anObject;
|
|
|
|
public Inner(Outer anObject) {
|
|
this.anObject = anObject;
|
|
}
|
|
|
|
void bar(){
|
|
|
|
}
|
|
void foo() {
|
|
super.foo();
|
|
this.bar();
|
|
anObject.aa();
|
|
anObject.aa();
|
|
}
|
|
}
|
|
}
|
|
class Super {
|
|
void foo() {}
|
|
} |