mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
testdata for IDEA-77128
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
import java.util.*;
|
||||
class A {
|
||||
public static void main(String[] args) {
|
||||
List<String> strings = new ArrayList<>();
|
||||
|
||||
List<? super Integer> list = new ArrayList<>();
|
||||
list.addAll<error descr="'addAll(java.util.Collection<? extends capture<? super java.lang.Integer>>)' in 'java.util.List' cannot be applied to '(java.util.List<java.lang.String>)'">(strings)</error>;
|
||||
|
||||
System.out.println(list.toString());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user