mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 09:50:57 +07:00
9 lines
256 B
Java
9 lines
256 B
Java
import java.util.List;
|
|
|
|
abstract class B {
|
|
abstract <T> void foo(List<List<T>> x);
|
|
|
|
void bar(List<List> x){
|
|
foo<error descr="'foo(java.util.List<java.util.List<T>>)' in 'B' cannot be applied to '(java.util.List<java.util.List>)'">(x)</error>;
|
|
}
|
|
} |