rename: do not qualify refs to fields with this in static context

This commit is contained in:
Anna Kozlova
2013-01-24 21:18:51 +04:00
parent 5379de1358
commit f5abe71123
4 changed files with 21 additions and 2 deletions
@@ -0,0 +1,7 @@
class Test {
String myFoo;
static {
String f<caret>oo = "";
System.out.println(myFoo);
}
}