mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
12 lines
163 B
Java
12 lines
163 B
Java
class A<T> {
|
|
A<A<? extends T>> foo(){
|
|
return null;
|
|
}
|
|
|
|
void bar(A<?> x){
|
|
baz(x.foo());
|
|
}
|
|
|
|
<S> void baz(A<A<? extends S>> x){}
|
|
}
|