codegen: handle exceptions of a method
[mate.git] / tests / Shift1.java
1 package tests;
2
3 public class Shift1 {
4         public static void main(String []args) {
5                 int s = 0x1000;
6                 System.out.printf("shifted: %d\n", s >>> 4);
7         }
8 }