android_mt6572_jiabo/ndk/tests/device/static-executable/jni/main.cxx
2025-09-05 16:56:03 +08:00

12 lines
181 B
C++

#include <stdio.h>
int main()
{
printf ("Hello 1\n");
try {
throw 20;
} catch(...) {
printf ("catch\n");
}
printf ("Hello 2\n");
return 0;
}