blob: 658790b01a2f87d01b7fac434a9783be41b4a1b4 [file] [log] [blame]
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();
}
}