Sign in
ara-mdk
/
platform
/
ndk
/
2863c0ec2aca5703493c8b98605f7048b1040d64
/
.
/
tests
/
device
/
exceptions-crash
/
jni
/
foo.cpp
blob: dac75d6d15a45157a0845503cfc191e5106e914f [
file
] [
log
] [
blame
]
#include
<new>
#include
<exception>
#include
<cstdio>
void
foo
()
{
try
{
::
printf
(
"Hello "
);
throw
std
::
exception
();
}
catch
(
std
::
exception e
)
{
::
printf
(
" World!\n"
);
}
}