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

class Test {
  void method(Set<? super Integer> p) {
    p.add(new Integer(8));
  }
}