Files
openide/java/java-tests/testData/refactoring/inlineMethod/SuperInsideHierarchy.java.after

16 lines
140 B
Plaintext

class A {
void foo(){
//do smth in A
}
}
class B {
void test(){
super.foo();
}
void foo() {
//do smth
}
}