mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
testdata for IDEA-67746
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
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<java.lang.Object>>)' in 'B' cannot be applied to '(java.util.List<java.util.List>)'">(x)</error>;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user