summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t16/after/test.java
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/typeMigration/testData/refactoring/typeMigration/t16/after/test.java')
-rw-r--r--plugins/typeMigration/testData/refactoring/typeMigration/t16/after/test.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/plugins/typeMigration/testData/refactoring/typeMigration/t16/after/test.java b/plugins/typeMigration/testData/refactoring/typeMigration/t16/after/test.java
new file mode 100644
index 000000000000..8c87396bcb3d
--- /dev/null
+++ b/plugins/typeMigration/testData/refactoring/typeMigration/t16/after/test.java
@@ -0,0 +1,15 @@
+class Test {
+ B f;
+
+ A bar() {
+ return f.foo(f);
+ }
+}
+class A {
+ <T> T foo(T t) {
+ return t;
+ }
+}
+
+class B extends A {
+} \ No newline at end of file