blob: 0a145e030a52ac1104fe6e59ca65060991fff7d3 [file] [log] [blame]
// PR c++/90748
// { dg-do compile { target c++11 } }
template <class ...> class A
{
void e ();
bool f (int() noexcept(e)); // { dg-error "::e" }
};
A<> b;