testdata for IDEA-67745

This commit is contained in:
Anna Kozlova
2015-05-21 10:00:25 +02:00
parent fea58865be
commit 6f657b665f
2 changed files with 13 additions and 0 deletions
@@ -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>;
}
}