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