Sign in
ara-mdk
/
platform
/
ndk
/
5d6dfdcee2d963f9e318122efa4ec4a70eacbd5d
/
.
/
tests
/
device
/
test-stlport_shared-exception
/
jni
/
eh35.cpp
blob: 40c41edbe4714459085a7e7edc6fb8d8b874022d [
file
] [
log
] [
blame
]
// { dg-do run { xfail sparc64-*-elf arm-*-pe } }
// { dg-options "-fexceptions" }
int
main
()
{
try
{
throw
'a'
;
}
catch
(
char
a
)
{
try
{
throw
'a'
;
}
catch
(
int
i
)
{
return
1
;
}
catch
(
char
c
)
{
return
0
;
}
}
return
1
;
}