testdata for IDEA-19800

This commit is contained in:
Anna Kozlova
2014-08-18 21:45:31 +04:00
parent 0bcd4c8491
commit 6d5cc7b95a
@@ -34,3 +34,20 @@ class Records {
}
}
}
//---------------------------------------------
class Parent<T extends Parent.NestedParent>
{
protected static interface NestedParent
{
}
}
class Test
{
public final static class Child extends Parent<<error descr="NestedChild is not accessible in current context">Child.NestedChild</error>>
{
private static interface NestedChild extends NestedParent
{
}
}
}