Home | History | Annotate | Download | only in jni
      1 /* This test is meant to check that C++ exceptions do not crash
      2  * when running on Eclair or older platform releases. It will
      3  * always succeed on later versions of the  platform!
      4  */
      5 
      6 extern void foo();
      7 
      8 int main(int argc, char** argv)
      9 {
     10     foo();
     11     return 0;
     12 }
     13