// { dg-do run } template void f() throw (T) { throw 7; } int main() { try { f(); } catch (...) { return 0; } }