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