disable rename as wrong ref on invalid access refs; though enable quick fix there

This commit is contained in:
anna
2011-09-14 18:50:28 +02:00
parent e90145a9ee
commit daa3c0ff05
6 changed files with 39 additions and 11 deletions

View File

@@ -0,0 +1,9 @@
class A {
private int myField;
}
class B extends A {
void method() {
myFi<caret>eld;
}
}