Sign in
ara-mdk
/
platform
/
ndk
/
a853d52d46fada5d31b72b1b570b2982bd54bcb3
/
.
/
tests
/
device
/
test-stlport_static-exception
/
jni
/
eb50.cpp
blob: 8d2c4033f73bd36846faf5953817e33a16c9d5c8 [
file
] [
log
] [
blame
]
// { dg-do run }
struct
foo
{
};
int
f
(
int
a
,
int
b
)
{
if
(
b
==
0
)
throw
foo
();
return
a
/
b
;
}
int
main
()
{
try
{
f
(
0
,
0
);
return
1
;
}
catch
(
foo x
)
{
return
0
;
}
}