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