< prev index next >

test/compiler/loopopts/Test6659207.java

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

@@ -24,13 +24,17 @@
 
 /*
  * @test
  * @bug 6659207
  * @summary access violation in CompilerThread0
+ *
+ * @run main compiler.loopopts.Test6659207
  */
 
-public class Test {
+package compiler.loopopts;
+
+public class Test6659207 {
     static int[] array = new int[12];
 
     static int index(int i) {
         if (i == 0) return 0;
         for (int n = 0; n < array.length; n++)
< prev index next >