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

class Test {
  void method(ArrayList<? super Number> p, Object p2) {
    p2 = p.get(0);
  }
}