mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +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:
+12
@@ -0,0 +1,12 @@
|
||||
public class Test {
|
||||
|
||||
private Bar bar = new Bar();
|
||||
|
||||
private static class Bar {
|
||||
private int x;
|
||||
|
||||
public void foo(int y) {
|
||||
x = y;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user