testdata for IDEA-67591

This commit is contained in:
anna
2013-10-10 20:29:35 +02:00
parent 993fb34281
commit efb328123b
2 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
interface A
{
interface B { }
}
interface C extends A, D<<error descr="B is not accessible in current context">C.B</error>> {}
interface D<T> {}

View File

@@ -319,6 +319,9 @@ public class GenericsHighlightingTest extends LightDaemonAnalyzerTestCase {
public void testIDEA67518() throws Exception { doTest5(false); }
public void testIDEA57252() throws Exception { doTest5(false); }
public void testIDEA57274() throws Exception { doTest(LanguageLevel.JDK_1_7, JavaSdkVersion.JDK_1_7, false); }
public void testIDEA67591() throws Exception {
doTest5(false);
}
public void testJavaUtilCollections_NoVerify() throws Exception {
PsiClass collectionsClass = getJavaFacade().findClass("java.util.Collections", GlobalSearchScope.moduleWithLibrariesScope(getModule()));