summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/wildcard/producerSuper/after/test.java
blob: 0769f09a7b7a32cd52c9b098a40c187776fd30c3 (plain)
1
2
3
4
5
6
7
import java.util.*;

class Test {
  void method(ArrayList<? super Integer> p) {
    p.set(0, new Integer(8));
  }
}