rename wrong ref by Shift-F6 (IDEA-61734)

This commit is contained in:
anna
2011-04-17 19:56:13 +02:00
parent b1966bfcb7
commit f42960991c
6 changed files with 150 additions and 26 deletions

View File

@@ -0,0 +1,7 @@
class Test {
void foo() {
int i = 0;
System.out.println(<caret>k);
System.out.println(k);
}
}

View File

@@ -0,0 +1,7 @@
class Test {
void foo() {
int i = 0;
System.out.println(i);
System.out.println(i);
}
}