codegen: handle exceptions of a method
[mate.git] / tests / Instance2.java
index 687d7f93c5d4e77e4715ec617a94bb8dd2965a66..b336aefcfdeff3e84f74af121b1fa631fd23aedd 100644 (file)
@@ -19,7 +19,7 @@ public class Instance2 extends Instance1 {
                b.x = 0x22; sum += b.x; // 0x22
                b.y = 0x33; sum += b.y; // 0x33
                Instance1.id(sum); // 0x198
-               b.getX(); // 0x22
+               System.out.printf("0x%08x\n", b.getX()); // 0x22
        }
 
        public int getX() {