move instance method should qualify field access if there is a parameter with the same name (IDEA-43009)

This commit is contained in:
anna
2010-01-22 13:14:34 +03:00
parent bce7f8b69b
commit 04130b5cb1
6 changed files with 65 additions and 1 deletions
@@ -0,0 +1,12 @@
public class Test {
private Bar bar = new Bar();
public void <caret>foo(int x) {
bar.x = x;
}
private static class Bar {
private int x;
}
}