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

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