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,8 @@
public class Constructor {
public Constructor() {
}
void foo() {
final Constructor constructor = new Co<caret>nstructor();
System.out.println(constructor);
}
}