mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
7 lines
281 B
Java
7 lines
281 B
Java
|
|
abstract class A<<warning descr="Type parameter 'S' is never used">S</warning>> {
|
|
abstract <T> void foo(A<? extends A<T>> x);
|
|
void bar(A<? extends A> x){
|
|
foo<error descr="'foo(A<? extends A<T>>)' in 'A' cannot be applied to '(A<capture<? extends A>>)'">(x)</error>;
|
|
}
|
|
} |