codegen: handle exceptions of a method
[mate.git] / tests / Integer1.java
index 2220aca5ccbde512b7ee2cbd11ac5f8a42fdf1ed..7ca6d5c0a2c2a030d859f0894f0fa901f6f357d0 100644 (file)
@@ -3,6 +3,6 @@ package tests;
 public class Integer1 {
        public static void main(String []args) {
                Integer a = new Integer(0x1337);
-               a.intValue(); // 0x1337
+               System.out.printf("result: 0x%08x\n", a.intValue()); // 0x1337
        }
 }