Home | History | Annotate | Download | only in jni
      1 #include <new>
      2 #include <exception>
      3 #include <cstdio>
      4 
      5 int foo(void)
      6 {
      7     ::printf("Hello ");
      8     throw std::exception();
      9 }
     10 
     11