blob: 99dcac67b758860aed18792d43f0f8fad58be9d6 [file] [log] [blame]
class User {
public class Subject {
private int myInt;
public void withClass(Object <caret>o) {
myInt += o.hashCode();
}
}
private void oper() {
Subject subj = new Subject();
subj.withClass(this);
}
}