summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t27/before/test.java
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/typeMigration/testData/refactoring/typeMigration/t27/before/test.java')
-rw-r--r--plugins/typeMigration/testData/refactoring/typeMigration/t27/before/test.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/typeMigration/testData/refactoring/typeMigration/t27/before/test.java b/plugins/typeMigration/testData/refactoring/typeMigration/t27/before/test.java
new file mode 100644
index 000000000000..a18da122856d
--- /dev/null
+++ b/plugins/typeMigration/testData/refactoring/typeMigration/t27/before/test.java
@@ -0,0 +1,13 @@
+class Test {
+ C f;
+ void foo(C c) {}
+}
+
+class B extends Test {
+ void foo(C c) {
+ f = c;
+ }
+}
+
+class C {}
+class D extends C{} \ No newline at end of file