mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +07:00
8 lines
250 B
Java
8 lines
250 B
Java
class B<S, M> {}
|
|
abstract class A<T> {
|
|
<K> void baz(B<K, K> a) {}
|
|
abstract B<?, ?> foo();
|
|
void bar(A<?> a) {
|
|
baz<error descr="'baz(B<capture<?>,capture<?>>)' in 'A' cannot be applied to '(B<capture<?>,capture<?>>)'">(a.foo())</error>;
|
|
}
|
|
} |