mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 22:20:54 +07:00
9 lines
214 B
Java
9 lines
214 B
Java
abstract class A<S> {
|
|
abstract <T extends A<? extends Throwable>> T foo(T y);
|
|
|
|
{
|
|
A<?> a = null;
|
|
foo<error descr="'foo(T)' in 'A' cannot be applied to '(A<capture<?>>)'">(a)</error>;
|
|
}
|
|
}
|