summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t22/after/test.java
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/typeMigration/testData/refactoring/typeMigration/t22/after/test.java')
-rw-r--r--plugins/typeMigration/testData/refactoring/typeMigration/t22/after/test.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/typeMigration/testData/refactoring/typeMigration/t22/after/test.java b/plugins/typeMigration/testData/refactoring/typeMigration/t22/after/test.java
new file mode 100644
index 000000000000..affc2b3da86f
--- /dev/null
+++ b/plugins/typeMigration/testData/refactoring/typeMigration/t22/after/test.java
@@ -0,0 +1,8 @@
+class Test {
+ Integer f;
+ void foo(Integer s) {}
+
+ void bar() {
+ foo(f);
+ }
+}