import java.util.List; abstract class Foo { abstract List createList(); > void sorted(List list) { } { sorted(createList()); } }