blob: bfa2e7e81f14e2606ecbea7a3a72663b6935ddb3 [file] [log] [blame]
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;
}
}