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