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

This commit is contained in:
anna
2011-09-14 19:36:25 +02:00
parent e90145a9ee
commit daa3c0ff05
6 changed files with 39 additions and 11 deletions
@@ -0,0 +1,10 @@
// "Rename Reference" "true"
class FooInterface {
private int myInt;
}
class Foo {
void buzz() {
myI<caret>nt + myInt;
}
}