codegen: handle exceptions of a method
[mate.git] / tests / Instance3.java
1 package tests;
2
3 public class Instance3 extends Instance2 {
4         public static void main(String []args) {
5                 int sum = 0;
6                 Instance3 a = new Instance3();
7                 a.setX(0x33);
8                 System.out.printf("result: 0x%08x\n", a.getX()); // 0x33
9                 a.setX(0x44);
10                 System.out.printf("result: 0x%08x\n", a.getX()); // 0x44
11         }
12 }