IDEADEV-25972
[fedora-idea.git] / testData / refactoring / moveInstanceMethod / Simple.java.after
blob61f81b658f58ac257427d9b47bcc21cccc6fb5fe
1 class Foreign {
2     void foo(Test test) {
3         test.field++;
4     }
7 class Test {
8     int field;
10     void bar () {
11         new Foreign().foo(this);
12     }