Sign in
android
/
platform
/
ndk
/
06c762d797782f574e40a956613c4e19c504b6c1
/
.
/
tests
/
device
/
static-executable-exceptions
/
jni
/
main.cpp
blob: d40e0a46e58cb69b0c8220a39d4de9c20ca7c933 [
file
] [
log
] [
blame
]
#include
<stdio.h>
int
main
()
{
printf
(
"Hello 1\n"
);
try
{
throw
20
;
}
catch
(...)
{
printf
(
"catch\n"
);
}
printf
(
"Hello 2\n"
);
return
0
;
}