mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
inline parameter: check access conflicts (IDEA-40703)
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
public class Subject {
|
||||
private int myInt;
|
||||
|
||||
public void withClass(Object <caret>o) {
|
||||
myInt += o.hashCode();
|
||||
}
|
||||
}
|
||||
|
||||
class User {
|
||||
private void oper() throws IOException {
|
||||
Subject subj = new Subject();
|
||||
class Local {
|
||||
}
|
||||
subj.withClass(new Local());
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user