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

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