blob: ebac9752c13274e20a6653de952c036d5e06623d [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 {
}
}