Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
15 lines
325 B
Java
15 lines
325 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 5003235
|
|
* @summary Access to private inner classes
|
|
* @author Peter von der Ahé
|
|
* @compile/fail/ref=T5003235c.out -XDrawDiagnostics T5003235c.java
|
|
*/
|
|
|
|
class T5003235c {
|
|
private static class B {
|
|
static class Inner {}
|
|
}
|
|
}
|
|
|
|
class C extends T5003235c.B.Inner {}
|