summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t138/after/test.java
blob: 141e122e2cccb3e8521a9ff03ae1b552de1e9615 (plain)
1
2
3
4
5
6
7
import java.util.*;
class Test {
  Set<String> mySet = new HashSet();
  void foo(Collection<String> set) {
    mySet.retainAll(set);
  }
}