mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-26 14:29:20 +07:00
16 lines
203 B
Java
16 lines
203 B
Java
class CommonParent {
|
|
void foo() {}
|
|
}
|
|
|
|
public class A extends CommonParent {
|
|
|
|
private void <caret>f() {
|
|
foo();
|
|
}
|
|
|
|
private class B extends CommonParent {
|
|
void g() {
|
|
foo();
|
|
}
|
|
}
|
|
} |