Sign in
ara-mdk
/
platform
/
ndk
/
09c875757c928f4c404251dc24a6c5b2f753868c
/
.
/
tests
/
device
/
test-stlport_shared-exception
/
jni
/
eh26.cpp
blob: 2560325121a40f2fc5d1909784573b14cb7410c2 [
file
] [
log
] [
blame
]
// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
// { dg-options "-fexceptions" }
class
MyExceptionHandler
{
};
int
main
()
{
try
{
throw
MyExceptionHandler
();
}
catch
(
const
MyExceptionHandler
&
eh
)
{
return
0
;
}
catch
(...)
{
return
1
;
}
return
1
;
}