mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-20 13:31:28 +07:00
testdata for IDEA-67835
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import java.util.List;
|
||||
|
||||
class B {
|
||||
void bar(List<String> x){
|
||||
foo(x);
|
||||
}
|
||||
<T> T foo(List<? super T> x){
|
||||
return null;
|
||||
}
|
||||
}
|
||||
@@ -296,6 +296,7 @@ public class GenericsHighlightingTest extends LightDaemonAnalyzerTestCase {
|
||||
}
|
||||
|
||||
public void testIDEA57325() { doTest5(false); }
|
||||
public void testIDEA67835() { doTest5(false); }
|
||||
|
||||
public void testJavaUtilCollections_NoVerify() throws Exception {
|
||||
PsiClass collectionsClass = getJavaFacade().findClass("java.util.Collections", GlobalSearchScope.moduleWithLibrariesScope(getModule()));
|
||||
|
||||
Reference in New Issue
Block a user