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) {}
}