attila@464: /* attila@464: * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. attila@464: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. attila@464: * attila@464: * This code is free software; you can redistribute it and/or modify it attila@464: * under the terms of the GNU General Public License version 2 only, as attila@464: * published by the Free Software Foundation. attila@464: * attila@464: * This code is distributed in the hope that it will be useful, but WITHOUT attila@464: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or attila@464: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License attila@464: * version 2 for more details (a copy is included in the LICENSE file that attila@464: * accompanied this code). attila@464: * attila@464: * You should have received a copy of the GNU General Public License version attila@464: * 2 along with this work; if not, write to the Free Software Foundation, attila@464: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. attila@464: * attila@464: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA attila@464: * or visit www.oracle.com if you need additional information or have any attila@464: * questions. attila@464: */ attila@464: attila@464: /** attila@464: * JDK-8021189: Prevent access to constructors of restricted classes attila@464: * attila@464: * @test attila@464: * @run attila@464: */ sundar@468: var InternalRunnableSuperclass = Java.type("jdk.nashorn.test.models.InternalRunnableSuperclass"); attila@464: try { sundar@468: new (InternalRunnableSuperclass.getInternalRunnableType())(); attila@464: } catch(e) { attila@464: print(e) attila@464: }