import java.util.List; class Foo { static Foo from(Iterable iterable) { return null; } void m(Iterable arguments, List list){ from(arguments).append( list); } Foo append(Iterable other) { return null; } }