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

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