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