import java.util.Collection; import java.util.HashSet; class A { Collection thrownInTryStatement = null; final Collection thrownTypes = ContainerUtil.newHashSet( thrownInTryStatement); } class ContainerUtil extends ContainerUtilRt{ public static HashSet newHashSet(Iterable iterable) { return null; } } class ContainerUtilRt { public static HashSet newHashSet(Iterable iterable) { return null; } }