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