mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +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);
|
|
}
|
|
}
|
|
} |