codegen: handle exceptions of a method
[mate.git] / tests / StaticClass2.java
1 package tests;
2
3 public class StaticClass2 {
4         public static class SC {
5                 public static int b;
6                 public int hrm = 543;
7                 public void printMe(int huhu) {
8                         System.out.printf("I'm SC %d %x, and you say \"%d\"\n", hrm, this.b, huhu);
9                 }
10         }
11
12         public SC a = new SC();
13
14         public static void main(String []args) {
15                 SC.b = 0x1337;
16                 new StaticClass2().a.printMe(888);
17         }
18 }