< prev index next >

test/compiler/jsr292/cr6990212/Test6990212.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke

*** 25,39 **** /** * @test * @bug 6990212 * @summary JSR 292 JVMTI MethodEnter hook is not called for JSR 292 bootstrap and target methods * ! * @run main Test6990212 */ ! import java.lang.invoke.*; interface intf { public Object target(); } public class Test6990212 implements intf { --- 25,43 ---- /** * @test * @bug 6990212 * @summary JSR 292 JVMTI MethodEnter hook is not called for JSR 292 bootstrap and target methods * ! * @run main compiler.jsr292.cr6990212.Test6990212 */ ! package compiler.jsr292.cr6990212; + import java.lang.invoke.MethodHandle; + import java.lang.invoke.MethodHandles; + import java.lang.invoke.MethodType; + interface intf { public Object target(); } public class Test6990212 implements intf {
< prev index next >