blob: e248016e837805f3ad02a754124108ab26fa0b44 (
plain)
1
2
3
4
5
6
7
8
9
|
import java.util.Collection;
public class Implementation implements GenericInterface<Collection<?>>{
public Collection<?> doSomething(Class<? extends Collection<?>> type) {
return null;
}
}
|