mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-10 11:58:50 +07:00
12 lines
221 B
Java
12 lines
221 B
Java
class Foo2<T> {
|
|
Foo2<? extends Runnable> getList() {
|
|
return null;
|
|
}
|
|
|
|
{
|
|
Foo2<T> f = new Foo2<T>();
|
|
Object a = <selection>f.getList()</selection>;
|
|
Object b = f.getList();
|
|
}
|
|
}
|