mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
testdata for IDEA-18343
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
class ContainerClass
|
||||
{
|
||||
private class SuperClass
|
||||
{
|
||||
private int field;
|
||||
}
|
||||
|
||||
private class SubClass extends SuperClass
|
||||
{
|
||||
private SubClass()
|
||||
{
|
||||
System.out.println(super.field);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user