inline parameter: evaluate this expression (IDEA-40666)
[fedora-idea.git] / java / java-tests / testData / refactoring / inlineParameter / RefThis.java.after
blob80e93667d307d6cd8eb6549beb4561767f80cfaa
1 class User {
2   public class Subject {
3     private int myInt;
5     public void withClass() {
6       myInt += User.this.hashCode();
7     }
8   }
10   private void oper() {
11     Subject subj = new Subject();
12     subj.withClass();
13   }