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