codegen: handle exceptions of a method
[mate.git] / tests / Generics1.java
index 4e3d2620d8b15eb6611e2443e1a2c145847f5792..6a708fbd116c66d7f47e0142378745c27a8725f9 100644 (file)
@@ -7,11 +7,14 @@ public class Generics1 implements Cmp<Integer> {
        }
 
        public static Cmp<Integer> sb = new Generics1();
+       public static int lalelu = 0;
 
        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));
+               }
        }
 }