summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t19/after/test.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/typeMigration/testData/refactoring/typeMigration/t19/after/test.java')
-rw-r--r--java/typeMigration/testData/refactoring/typeMigration/t19/after/test.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/java/typeMigration/testData/refactoring/typeMigration/t19/after/test.java b/java/typeMigration/testData/refactoring/typeMigration/t19/after/test.java
new file mode 100644
index 000000000000..9609791bb138
--- /dev/null
+++ b/java/typeMigration/testData/refactoring/typeMigration/t19/after/test.java
@@ -0,0 +1,7 @@
+import java.util.*;
+class Test {
+ HashMap<Integer, Integer> f;
+ void foo() {
+ Set<Integer> s = f.keySet();
+ }
+}