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