mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
13 lines
136 B
Java
13 lines
136 B
Java
class A {
|
|
void bar() {}
|
|
}
|
|
|
|
class B extends A {
|
|
void foo() {
|
|
super.bar();
|
|
}
|
|
|
|
static void err(B b) {
|
|
b.fo<caret>o();
|
|
}
|
|
} |