blob: 0fbc2b3fc9dc70b25e8cb483186990bbb2c297ab [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().new InnerLocal());
}
class Local {
class InnerLocal {}
}
}