mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-06 05:10:22 +07:00
testdata for IDEA-54197
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
@@ -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()));
|
||||
|
||||
Reference in New Issue
Block a user