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

class Test {
  void method(ArrayList<?> p) {
       p[0] = new Integer(0);
  }
}