testdata for IDEA-54197

This commit is contained in:
anna
2013-10-23 12:13:43 +02:00
parent 1d08cd4400
commit 9ba5f92262
2 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import java.util.*;
abstract class GenericPanelControl {
protected abstract void _performAction(List<?> rowVector);
}
class WorkflowPanelControl extends GenericPanelControl {
protected void _performAction(List rowVector) {
}
}
class WorkflowSubPanelControl extends WorkflowPanelControl {
protected void _performAction(List rowVector) {
super._performAction(rowVector);
}
}

View File

@@ -327,6 +327,7 @@ public class GenericsHighlightingTest extends LightDaemonAnalyzerTestCase {
public void testIDEA60818() { doTest5(false); }
public void testIDEA63331() { doTest5(false); }
public void testIDEA60836() { doTest5(false); }
public void testIDEA54197() { doTest5(false); }
public void testJavaUtilCollections_NoVerify() throws Exception {
PsiClass collectionsClass = getJavaFacade().findClass("java.util.Collections", GlobalSearchScope.moduleWithLibrariesScope(getModule()));