blob: 985fcae6bc6b0b4f0ef16977e94f1325c5a59499 [file] [log] [blame]
// { dg-do run }
template <class T>
void f() throw (T)
{
throw 7;
}
int main()
{
try {
f<int>();
} catch (...) {
return 0;
}
}