blob: 991c63ac984c3cd4109cc142a42849e758d9e283 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 5003235
* @summary Access to private inner classes
* @author Peter von der Ah\u00e9
* @compile/fail/ref=T5003235c.out -XDrawDiagnostics T5003235c.java
*/
class T5003235c {
private static class B {
static class Inner {}
}
}
class C extends T5003235c.B.Inner {}