mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 01:20:53 +07:00
6 lines
239 B
Java
6 lines
239 B
Java
class D<T> {
|
|
void foo(D<?> x){
|
|
bar(x,<error descr="'bar(D<?>, D<? super java.lang.Object>)' in 'D' cannot be applied to '(D<capture<?>>, D<capture<?>>)'">x</error>);
|
|
}
|
|
<T> void bar(D<? extends T> x, D<? super T> y){}
|
|
} |