mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 16:25:33 +07:00
16 lines
186 B
Java
16 lines
186 B
Java
|
|
class Outer {
|
|
|
|
class A {
|
|
private void foo() {}
|
|
private int i;
|
|
|
|
}
|
|
|
|
class B extends A {
|
|
final void test() {
|
|
foo();
|
|
System.out.println(i);
|
|
}
|
|
}
|
|
} |