mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 06:51:01 +07:00
9 lines
236 B
Java
9 lines
236 B
Java
import java.util.List;
|
|
|
|
abstract class B {
|
|
abstract <T> void foo(List<T>[] x);
|
|
|
|
void bar(List<?>[] x){
|
|
foo<error descr="'foo(java.util.List<T>[])' in 'B' cannot be applied to '(java.util.List<?>[])'">(x)</error>;
|
|
}
|
|
} |