blob: c5212b24584c1df31efc314a02b106be26565a11 [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 TopLevel());
}
}
class TopLevel {}