import java.util.Collection; import java.util.List; class Testsss { public > void that(Iterable target) {} public > void that(Collection target) {} void foo(ImmutableList l) { that( l); } interface ImmutableList extends List {} }