IDEADEV-25972
[fedora-idea.git] / testData / refactoring / convertToInstanceMethod / Simple.java.after
blobb620826c72e9f095fc1aa2260bf4194c4009cbe6
1 public class Y {
2     public void foo() {
3     }
5     void method() {
6         System.out.println(this);
7         foo();
8     }
10 public class X {
12     {
13       Y y = new Y();
14       y.method();
15       new Y().method();
16     }