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