mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-21 22:11:40 +07:00
testdata for IDEA-71645
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
class Component {
|
||||
void addChild( Component b ) {
|
||||
}
|
||||
}
|
||||
|
||||
class Panel extends Component {
|
||||
public Panel( Component pNode ) {
|
||||
}
|
||||
|
||||
Panel() {
|
||||
}
|
||||
}
|
||||
|
||||
class VerticalPanel extends Panel {
|
||||
public VerticalPanel() {
|
||||
super( new Component() {{
|
||||
addChild( new Panel() );
|
||||
}} );
|
||||
}
|
||||
}
|
||||
@@ -363,6 +363,7 @@ public class LightAdvHighlightingTest extends LightDaemonAnalyzerTestCase {
|
||||
public void testThisInInterface() { doTest(false, false); }
|
||||
public void testInnerClassConstantReference() { doTest(false, false); }
|
||||
public void testIDEA60875() { doTest(false, false); }
|
||||
public void testIDEA71645() { doTest(false, false); }
|
||||
|
||||
public void testStaticMethodCalls() {
|
||||
doTestFile(BASE_PATH + "/" + getTestName(false) + ".java").checkSymbolNames().test();
|
||||
|
||||
Reference in New Issue
Block a user