inline parameter: check inner/local classes (IDEA-40703)

This commit is contained in:
anna
2010-02-11 17:56:29 +03:00
parent b26f153038
commit 20b01ce79e
8 changed files with 114 additions and 3 deletions
@@ -0,0 +1,18 @@
public class Subject {
private int myInt;
public void withClass() {
myInt += new User.Local().new InnerLocal().hashCode();
}
}
class User {
private void oper() throws IOException {
Subject subj = new Subject();
subj.withClass();
}
class Local {
class InnerLocal {}
}
}