summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/wildcard/producerSuper/after/test.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/typeMigration/testData/refactoring/wildcard/producerSuper/after/test.java')
-rw-r--r--java/typeMigration/testData/refactoring/wildcard/producerSuper/after/test.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/java/typeMigration/testData/refactoring/wildcard/producerSuper/after/test.java b/java/typeMigration/testData/refactoring/wildcard/producerSuper/after/test.java
new file mode 100644
index 000000000000..0769f09a7b7a
--- /dev/null
+++ b/java/typeMigration/testData/refactoring/wildcard/producerSuper/after/test.java
@@ -0,0 +1,7 @@
+import java.util.*;
+
+class Test {
+ void method(ArrayList<? super Integer> p) {
+ p.set(0, new Integer(8));
+ }
+} \ No newline at end of file