blob: cdbd6e1feeb8e70a8755167f162704f737bb322b [file] [log] [blame]
template <class T>
void f() throw (T)
{
throw 7;
}
int main()
{
try {
f<int>();
} catch (...) {
return 0;
}
}