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

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

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