< prev index next >

test/java/lang/invoke/VMAnonymousClass.java

Print this page




   7  * published by the Free Software Foundation.
   8  *
   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 /* @test
  25  * @bug 8046903
  26  * @summary VM anonymous class members can't be statically invocable

  27  * @run junit test.java.lang.invoke.VMAnonymousClass
  28  */
  29 package test.java.lang.invoke;
  30 
  31 import java.lang.invoke.MethodHandle;
  32 import java.lang.invoke.MethodHandles;
  33 import java.lang.invoke.MethodType;
  34 import java.lang.reflect.Field;
  35 import org.junit.Test;
  36 import sun.misc.Unsafe;
  37 import jdk.internal.org.objectweb.asm.*;
  38 import static jdk.internal.org.objectweb.asm.Opcodes.*;
  39 
  40 public class VMAnonymousClass {
  41     public static void main(String[] args) throws Throwable {
  42         VMAnonymousClass test = new VMAnonymousClass();
  43         test.testJavaLang();
  44         test.testJavaUtil();
  45         test.testSunMisc();
  46         test.testJavaLangInvoke();




   7  * published by the Free Software Foundation.
   8  *
   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 /* @test
  25  * @bug 8046903
  26  * @summary VM anonymous class members can't be statically invocable
  27  * @modules java.base/sun.misc java.base/jdk.internal.org.objectweb.asm
  28  * @run junit test.java.lang.invoke.VMAnonymousClass
  29  */
  30 package test.java.lang.invoke;
  31 
  32 import java.lang.invoke.MethodHandle;
  33 import java.lang.invoke.MethodHandles;
  34 import java.lang.invoke.MethodType;
  35 import java.lang.reflect.Field;
  36 import org.junit.Test;
  37 import sun.misc.Unsafe;
  38 import jdk.internal.org.objectweb.asm.*;
  39 import static jdk.internal.org.objectweb.asm.Opcodes.*;
  40 
  41 public class VMAnonymousClass {
  42     public static void main(String[] args) throws Throwable {
  43         VMAnonymousClass test = new VMAnonymousClass();
  44         test.testJavaLang();
  45         test.testJavaUtil();
  46         test.testSunMisc();
  47         test.testJavaLangInvoke();


< prev index next >