Sign in
ara-mdk
/
platform
/
ndk
/
f4f10df3fdd08ef9f466d9b54953c1ba3e64827b
/
.
/
tests
/
device
/
test-stlport_static-exception
/
jni
/
loop2.cpp
blob: 1e85fa1af22b60045e37f8a2d16554381f6a80b9 [
file
] [
log
] [
blame
]
// Test that breaking out of a handler works.
// { dg-do run }
int
main
()
{
while
(
1
)
{
try
{
throw
1
;
}
catch
(...)
{
break
;
}
}
}