mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
12 lines
169 B
Java
12 lines
169 B
Java
class Base {
|
|
private void f() {}
|
|
|
|
static void g() {
|
|
Base b = new Derived();
|
|
<caret>b.f();
|
|
}
|
|
}
|
|
|
|
class Derived extends Base {
|
|
void f() {}
|
|
} |