mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 13:02:30 +07:00
testdata for IDEA-57289
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
class C<T> {
|
||||
void foo(C<C<?>> x) {
|
||||
C<Object> c = bar(x);
|
||||
}
|
||||
<T> C<T> bar(C<? super C<T>> x){
|
||||
return null;
|
||||
}
|
||||
}
|
||||
@@ -308,6 +308,7 @@ public class GenericsHighlightingTest extends LightDaemonAnalyzerTestCase {
|
||||
public void testIDEA111085() { doTest5(false); }
|
||||
public void testIDEA109556() { doTest5(false); }
|
||||
public void testIDEA107440() { doTest5(false); }
|
||||
public void testIDEA57289() { 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