mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
testdata for IDEA-18343
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
class ContainerClass
|
||||
{
|
||||
private class SuperClass
|
||||
{
|
||||
private int field;
|
||||
}
|
||||
|
||||
private class SubClass extends SuperClass
|
||||
{
|
||||
private SubClass()
|
||||
{
|
||||
System.out.println(super.field);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -376,6 +376,7 @@ public class LightAdvHighlightingTest extends LightDaemonAnalyzerTestCase {
|
||||
public void testInnerClassConstantReference() { doTest(false, false); }
|
||||
public void testIDEA60875() { doTest(false, false); }
|
||||
public void testIDEA71645() { doTest(false, false); }
|
||||
public void testIDEA18343() { doTest(false, false); }
|
||||
public void testNewExpressionClass() { doTest(false, false); }
|
||||
|
||||
public void testNoEnclosingInstanceWhenStaticNestedInheritsFromContainingClass() throws Exception {
|
||||
|
||||
Reference in New Issue
Block a user