Sign in
ara-mdk
/
platform
/
ndk
/
2fe911ac795eb560f6d83118e227698b458e074a
/
.
/
tests
/
device
/
test-stlport_static-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
;
}