< prev index next >

test/compiler/jsr292/Test7082949.java

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

@@ -25,17 +25,20 @@
 /**
  * @test
  * @bug 7082949
  * @summary JSR 292: missing ResourceMark in methodOopDesc::make_invoke_method
  *
- * @run main Test7082949
+ * @run main compiler.jsr292.Test7082949
  */
 
-import java.lang.invoke.*;
-import static java.lang.invoke.MethodHandles.*;
-import static java.lang.invoke.MethodType.*;
+package compiler.jsr292;
 
+import java.lang.invoke.MethodHandle;
+import java.lang.invoke.MethodHandles;
+
+import static java.lang.invoke.MethodType.methodType;
+
 public class Test7082949 implements Runnable {
     public static void main(String... args) throws Throwable {
         new Thread(new Test7082949()).start();
     }
 
< prev index next >