blob: 4c29f2d1f90a618d6e39bdaa121c1ee3a91be180 [file] [log] [blame]
import java.util.Collections;
import java.util.List;
class Bar {
private List<Property> getChildren(Property property, PropertiesContainer c) {
return property.getChildren(c);
}
static class PropertiesContainer<M extends Property> {}
}
class Property<K> {
public List<? extends Property<K>> getChildren(K container) {
return Collections.emptyList();
}
}