mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
move instance method should qualify field access if there is a parameter with the same name (IDEA-43009)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user