< prev index next >

test/runtime/Nestmates/privateConstructors/TestConstructorHierarchy.java

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8046171
  27  * @summary Test access to private constructors in the hierarchy that are
  28  * outside the nest
  29  * @compile -XDdisablePrivateAccessors TestConstructorHierarchy.java
  30  * @compile ExternalSuper.jcod
  31  *          ExternalSub.jcod
  32  * @run main TestConstructorHierarchy
  33  */
  34 
  35 public class TestConstructorHierarchy {
  36 
  37     static class NestedA extends ExternalSuper {
  38         private NestedA() {}
  39         protected NestedA(int i) {} // for compile-time only
  40     }
  41 
  42     // Access to private members of classes outside the nest is
  43     // not permitted. These tests should throw IllegalAccessError
  44     // at runtime. To allow them to compile the classes below are
  45     // defined with public members. We then replace those class files
  46     // with jcod variants that make the member private again.
  47 
  48     public static void main(String[] args) throws Throwable {
  49         try {




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8046171
  27  * @summary Test access to private constructors in the hierarchy that are
  28  * outside the nest
  29  * @compile TestConstructorHierarchy.java
  30  * @compile ExternalSuper.jcod
  31  *          ExternalSub.jcod
  32  * @run main TestConstructorHierarchy
  33  */
  34 
  35 public class TestConstructorHierarchy {
  36 
  37     static class NestedA extends ExternalSuper {
  38         private NestedA() {}
  39         protected NestedA(int i) {} // for compile-time only
  40     }
  41 
  42     // Access to private members of classes outside the nest is
  43     // not permitted. These tests should throw IllegalAccessError
  44     // at runtime. To allow them to compile the classes below are
  45     // defined with public members. We then replace those class files
  46     // with jcod variants that make the member private again.
  47 
  48     public static void main(String[] args) throws Throwable {
  49         try {


< prev index next >