langtools/test/tools/javac/T5003235/T5003235c.java
author lana
Thu, 21 Jan 2016 09:46:01 -0800
changeset 35340 38f7386ed942
parent 6150 d055fa8ced62
permissions -rw-r--r--
Added tag jdk-9+102 for changeset 7e3feb2ba5b3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
06bc494ca11e Initial load
duke
parents:
diff changeset
     2
 * @test  /nodynamiccopyright/
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * @bug     5003235
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 * @summary Access to private inner classes
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * @author  Peter von der Ah\u00e9
6150
d055fa8ced62 6971882: Remove -XDstdout from javac test
jjg
parents: 2984
diff changeset
     6
 * @compile/fail/ref=T5003235c.out -XDrawDiagnostics T5003235c.java
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
class T5003235c {
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
    private static class B {
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
        static class Inner {}
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
}
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
class C extends T5003235c.B.Inner {}