inplace members rename tests

(cherry picked from commit 9db66026eb65ef943da08f6dcf42b0f2a80fe03e)
This commit is contained in:
anna
2011-12-06 10:38:33 +01:00
parent d7d6fa9ad2
commit b56abcfae9
12 changed files with 191 additions and 5 deletions
@@ -0,0 +1,12 @@
class Foo {
void foo(){}
void bar() {
foo();
}
}
class FooImpl extends Foo {
void f<caret>oo() {
super.foo();
}
}