(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
noexcept58.C
// 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;