summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t35/after/test.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/typeMigration/testData/refactoring/typeMigration/t35/after/test.java')
-rw-r--r--java/typeMigration/testData/refactoring/typeMigration/t35/after/test.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/java/typeMigration/testData/refactoring/typeMigration/t35/after/test.java b/java/typeMigration/testData/refactoring/typeMigration/t35/after/test.java
new file mode 100644
index 000000000000..b575a53519c4
--- /dev/null
+++ b/java/typeMigration/testData/refactoring/typeMigration/t35/after/test.java
@@ -0,0 +1,13 @@
+class Test {
+ TestImpl myParent;
+
+ public Test(TestImpl parent) {
+ myParent = parent;
+ }
+
+ class TestImpl extends Test {
+ public TestImpl(TestImpl parent) {
+ super(parent);
+ }
+ }
+} \ No newline at end of file