langtools/test/tools/javac/T5003235/T5003235c.java
author duke
Wed, 05 Jul 2017 16:37:21 +0200
changeset 572 18dc4ba4739a
parent 10 06bc494ca11e
child 2984 e15ff3a34054
permissions -rw-r--r--
Merge
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
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * @compile/fail/ref=T5003235c.out -XDstdout -XDdiags=%b:%l:%_%m T5003235c.java
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 {}