blob: 82bcacc0c5b816c7344928eb805934a576d49701 [file] [log] [blame]
public class Subject {
private int myInt;
public void withClass() {
myInt += new TopLevel().hashCode();
}
}
class User {
private void oper() throws IOException {
Subject subj = new Subject();
subj.withClass();
}
}
class TopLevel {}