blob: 6ec3664f080d9d370dbad02cd759d7bfb4d43ab9 [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();
subj.withClass(new Local());
}
}
class Local {
}
}