testdata for IDEA-67518

This commit is contained in:
anna
2013-10-10 18:39:56 +02:00
parent 6a9313c58e
commit 82b6b165d6
2 changed files with 7 additions and 0 deletions
@@ -0,0 +1,6 @@
class A<T extends B.C>
{
interface C {}
}
class B extends A<<error descr="C is not accessible in current context">B.C</error>>{}
@@ -316,6 +316,7 @@ public class GenericsHighlightingTest extends LightDaemonAnalyzerTestCase {
public void testIDEA87860() throws Exception { doTest5(false); }
public void testIDEA67584() throws Exception { doTest5(false); }
public void testIDEA113225() throws Exception { doTest5(false); }
public void testIDEA67518() throws Exception { doTest5(false); }
public void testJavaUtilCollections_NoVerify() throws Exception {
PsiClass collectionsClass = getJavaFacade().findClass("java.util.Collections", GlobalSearchScope.moduleWithLibrariesScope(getModule()));