codegen: handle exceptions of a method
[mate.git] / tests / StaticClass1.java
1 package tests;
2
3 public class StaticClass1 {
4         public static class SC {
5                 public static void printMe(int huhu) {
6                         System.out.printf("I'm SC, and you say \"%d\"\n", huhu);
7                 }
8         }
9
10         public static void main(String []args) {
11                 SC.printMe(1337);
12         }
13 }