codegen: handle exceptions of a method
[mate.git] / tests / Instance4.java
1 package tests;
2
3 public class Instance4 {
4         public int a, b;
5
6         public Instance4() {
7                 this(0x666, 0x1337);
8         }
9
10         public Instance4(int x, int y) {
11                 this.a = x;
12                 this.b = y;
13         }
14
15         public static void main(String []args) {
16                 Instance4 x = new Instance4();
17                 System.out.printf("result: 0x%08x\n", x.a);
18                 System.out.printf("result: 0x%08x\n", x.b);
19         }
20 }