testdata for IDEA-57339

This commit is contained in:
anna
2012-05-03 09:19:01 +02:00
parent 0ee759c3b8
commit cf8ab78b59
2 changed files with 8 additions and 0 deletions
@@ -0,0 +1,7 @@
abstract class A {
abstract <T extends Iterable & Cloneable> void foo();
}
abstract class B extends A{
abstract <T extends Cloneable & Iterable> void foo();
}
@@ -133,6 +133,7 @@ public class GenericsHighlightingTest extends LightDaemonAnalyzerTestCase {
public void testIDEA63291() throws Exception {doTest(false);}
public void testIDEA72912() throws Exception {doTest(false);}
public void testIllegalGenericTypeInInstanceof() throws Exception {doTest(false);}
public void testIDEA57339() throws Exception {doTest(false);}
public void testJavaUtilCollections_NoVerify() throws Exception {
PsiClass collectionsClass = getJavaFacade().findClass("java.util.Collections", GlobalSearchScope.moduleWithLibrariesScope(getModule()));