invokevirtual: implement lazy class loading right
[mate.git] / tests / Generics1.java
index fa093ca2611da4f32ec1042de1cb9067e2663ee0..6a708fbd116c66d7f47e0142378745c27a8725f9 100644 (file)
@@ -11,8 +11,10 @@ public class Generics1 implements Cmp<Integer> {
 
        public static void main(String []args) {
                Generics1 foo = new Generics1();
-               System.out.printf("0x%08x\n", foo.cmpto(0x666));
-               System.out.printf("0x%08x\n", sb.cmpto(0x666));
+               for (int i = 0; i < 0x10; i++) {
+                       System.out.printf("0x%08x\n", foo.cmpto(0x666));
+                       System.out.printf("0x%08x\n", sb.cmpto(0x666));
+               }
        }
 }