blob: 141e122e2cccb3e8521a9ff03ae1b552de1e9615 [file] [log] [blame]
import java.util.*;
class Test {
Set<String> mySet = new HashSet();
void foo(Collection<String> set) {
mySet.retainAll(set);
}
}