Sign in
ara-mdk
/
platform
/
ndk
/
5d6dfdcee2d963f9e318122efa4ec4a70eacbd5d
/
.
/
tests
/
device
/
test-stlport_shared-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
)
{}
}