blob: ad3b2e4f0082a4c9a982edb19b8f418a56914065 [file] [log] [blame]
// { dg-do run }
template <class T>
void f()
#if __cplusplus <= 201402L
throw (T) // { dg-warning "deprecated" "" { target { c++11 && { ! c++17 } } } }
#endif
{
throw 7;
}
int main()
{
try {
f<int>();
} catch (...) {
return 0;
}
}