mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
13 lines
237 B
Java
13 lines
237 B
Java
class Foo2<T> {
|
|
Foo2<? extends Runnable> getList() {
|
|
return null;
|
|
}
|
|
|
|
{
|
|
Foo2<T> f = new Foo2<T>();
|
|
Foo2<? extends Runnable> temp = f.getList();
|
|
Object a = temp;
|
|
Object b = temp;
|
|
}
|
|
}
|