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,21 @@
public class Subject {
private int myInt;
public void withClass() {
myInt += new Local().hashCode();
}
class User {
private void oper() throws IOException {
Subject subj = new Subject();
subj.withClass();
}
}
class Local {
}
}