* configure.ac: New switch for disabling -O2 (--disable-optimizations).
[cacao.git] / tests / InlineExTest3.java
1 public class InlineExTest3 {
2         public static void internal() throws Exception {
3                 System.out.println("INTERNAL");
4         }
5
6         public static void main(String args[]) {
7                 try {
8                         internal();
9                         throw new Exception("ex");
10                         //System.out.println("ERROR EXCEPTION EXPECTED");
11                 } catch (Exception e) {
12                         System.out.println(e);
13                         System.exit(0);
14                 }
15         //      System.out.println("SHOULD NOT BE REACHED");
16         }
17 }