testdata for IDEA-65377

This commit is contained in:
anna
2013-10-23 19:16:00 +02:00
parent 1d5f624ba5
commit cbe42de147
2 changed files with 5 additions and 0 deletions
@@ -0,0 +1,4 @@
public class C1<T extends C1<T>>{
public static class C2<K extends C1<K>> extends C1<K>{}
public static class C3<Z> extends C2<<error descr="No wildcard expected">? extends C3<Z></error>>{}
}
@@ -329,6 +329,7 @@ public class GenericsHighlightingTest extends LightDaemonAnalyzerTestCase {
public void testIDEA60836() { doTest5(false); }
public void testIDEA54197() { doTest5(false); }
public void testIDEA71582() { doTest5(false); }
public void testIDEA65377() { doTest5(false); }
public void testJavaUtilCollections_NoVerify() throws Exception {
PsiClass collectionsClass = getJavaFacade().findClass("java.util.Collections", GlobalSearchScope.moduleWithLibrariesScope(getModule()));