inline parameter: evaluate this expression (IDEA-40666)

This commit is contained in:
anna
2010-02-02 16:16:35 +03:00
parent a2242b8c42
commit 0cc203b176
8 changed files with 106 additions and 4 deletions
@@ -0,0 +1,14 @@
public class Subject {
private int myInt;
public void withClass(Object <caret>o) {
myInt += o.hashCode();
}
}
class User {
private void oper() {
Subject subj = new Subject();
subj.withClass(this);
}
}