mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
testdata for IDEA-57495
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
import java.util.*;
|
||||
interface C<T> extends List<List<T>>{}
|
||||
abstract class A {
|
||||
abstract <T> T baz(List<? super List<? super T>> a);
|
||||
|
||||
void bar(C<?> x){
|
||||
baz<error descr="'baz(java.util.List<? super java.util.List<? super java.lang.Object>>)' in 'A' cannot be applied to '(C<capture<?>>)'">(x)</error>;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user