blob: 310c4f6eab7404a1b76751b70b90e97dba39ac8a [file] [log] [blame]
interface Generic<T> {
SomeGeneric<? extends T> foo();
}
class II implements Generic<Object> {
public SomeGeneric<?> foo() {
<selection>return null;</selection>
}
}
class SomeGeneric<P> {
}