mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
18 lines
271 B
Java
18 lines
271 B
Java
class InlineMethodCallingSuper {
|
|
class Parent {
|
|
void foo() {
|
|
|
|
}
|
|
}
|
|
|
|
class Child extends Parent {
|
|
void bar() {
|
|
super.foo();
|
|
}
|
|
|
|
void callFooThroughBarOnC(Child c){
|
|
c.b<caret>ar();
|
|
}
|
|
}
|
|
}
|