mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +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();
|
|
}
|
|
}
|