inline parameter: check access conflicts (IDEA-40703)

This commit is contained in:
anna
2010-02-02 16:16:36 +03:00
parent 41b97a4f75
commit 107ab35006
8 changed files with 161 additions and 12 deletions
@@ -0,0 +1,16 @@
public class Subject {
private int myInt;
public void withClass() {
myInt += new TopLevel().hashCode();
}
}
class User {
private void oper() throws IOException {
Subject subj = new Subject();
subj.withClass();
}
}
class TopLevel {}