codegen: handle exceptions of a method
[mate.git] / tests / Instance5.java
1 package tests;
2
3 public class Instance5 {
4         public static void main(String []args) {
5                 int i_am_null = 0;
6                 if (i_am_null > 0) {
7                         new Instance5_notload();
8                         System.out.printf("loaded notload stuff o_O\n");
9                 } else {
10                         System.out.printf("Nothing to do here\n");
11                 }
12         }
13 }
14
15 class Instance5_notload {
16         static {
17                 System.out.printf("sup, I'm Instance5_notload\n");
18         }
19 }