mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
7 lines
225 B
Java
7 lines
225 B
Java
class C<T extends C<? extends C<? extends T>>>{
|
|
void foo(C<?> x){
|
|
bar<error descr="'bar(C<T>)' in 'C' cannot be applied to '(C<capture<?>>)'">(x)</error>;
|
|
}
|
|
<T extends C<? extends T>> void bar(C<T> x){}
|
|
}
|