blob: 36a8ea8157a8f612080aa212350fc8718f30adc0 [file] [log] [blame]
import java.util.Collection;
import java.util.HashSet;
class A {
Collection<String> thrownInTryStatement = null;
final Collection<String> thrownTypes = ContainerUtil.newHashSet( thrownInTryStatement);
}
class ContainerUtil extends ContainerUtilRt{
public static <T> HashSet<T> newHashSet(Iterable<? extends T> iterable) {
return null;
}
}
class ContainerUtilRt {
public static <T> HashSet<T> newHashSet(Iterable<? extends T> iterable) {
return null;
}
}