inline parameter: check access conflicts (IDEA-40703)

This commit is contained in:
anna
2010-02-01 20:39:35 +03:00
parent 41b97a4f75
commit 107ab35006
8 changed files with 161 additions and 12 deletions

View File

@@ -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());
}
}