Sign in
ara-mdk
/
platform
/
ndk
/
2fe911ac795eb560f6d83118e227698b458e074a
/
.
/
tests
/
device
/
test-stlport_static-exception
/
jni
/
spec9.cpp
blob: 9e00d1c7535f7f31ab70055520132dc6cdfae3c0 [
file
] [
log
] [
blame
]
// PR c++/15745
// { dg-do run }
typedef
int
IntArray
[
10
];
IntArray
i
;
void
test_array
()
throw
(
IntArray
)
{
throw
i
;
}
int
main
()
{
try
{
test_array
();
}
catch
(
IntArray
)
{}
}