blob: 8b52ea1478d2163cbf0f971408266fa6ddbb7ab4 [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());
}
private class Local {
}
}