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