Sign in
ara-mdk
/
platform
/
ndk
/
887d3eb6adaa18a3fa45290cf7fcabfcb223512d
/
.
/
tests
/
device
/
test-stlport_shared-exception
/
jni
/
eh21.cpp
blob: ac74fa3861476608428ebc323e5976b2043746d9 [
file
] [
log
] [
blame
]
// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
// { dg-options "-fexceptions" }
int
main
()
{
try
{
try
{
throw
1
;
}
catch
(
char
*
)
{
}
}
catch
(
int
)
{
return
0
;
}
return
1
;
}