blob: 84d95fcc036b45035d4fe7b4439514c8f3bf2a1e [file] [log] [blame]
// PR c++/15745
// { dg-do run }
typedef int IntArray[10];
IntArray i;
void test_array()
#if __cplusplus <= 201402L
throw (IntArray) // { dg-warning "deprecated" "" { target { c++11 && { ! c++17 } } } }
#endif
{
throw i;
}
int main ()
{
try
{
test_array();
}
catch (IntArray) {}
}