testdata for IDEA-71645

This commit is contained in:
anna
2013-05-03 11:47:49 +02:00
parent 8d301f4f3e
commit f4e45c7219
2 changed files with 21 additions and 0 deletions

View File

@@ -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() );
}} );
}
}

View File

@@ -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();