Files
openide/java/java-tests/testData/refactoring/renameInplace/SuperMethod_after.java
anna b56abcfae9 inplace members rename tests
(cherry picked from commit 9db66026eb65ef943da08f6dcf42b0f2a80fe03e)
2011-12-06 10:38:33 +01:00

12 lines
125 B
Java

class Foo {
void xxx(){}
void bar() {
xxx();
}
}
class FooImpl extends Foo {
void xxx() {
super.xxx();
}
}