android_mt6572_jiabo/ndk/tests/device/exceptions-crash/jni/main.cpp
2025-09-05 16:56:03 +08:00

12 lines
266 B
C++

/* This test is meant to check that C++ exceptions do not crash
* when running on Eclair or older platform releases. It will
* always succeed on later versions of the platform!
*/
extern void foo();
int main(int argc, char** argv)
{
foo();
return 0;
}