mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
12 lines
209 B
Java
12 lines
209 B
Java
interface Generic<T> {
|
|
SomeGeneric<? extends T> foo();
|
|
}
|
|
|
|
class II implements Generic<Object> {
|
|
public SomeGeneric<?> foo() {
|
|
<selection>return null;</selection>
|
|
}
|
|
}
|
|
|
|
class SomeGeneric<P> {
|
|
} |