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