summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t35/after/test.java
blob: b575a53519c4bd42e146432db818e13479736806 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class Test {
  TestImpl myParent;

  public Test(TestImpl parent) {
    myParent = parent;
  }

  class TestImpl extends Test {
    public TestImpl(TestImpl parent) {
      super(parent);
    }
  }
}