(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
torture/
pr46364.C
// { dg-do compile }
#include <string>

void a()
#if __cplusplus <= 201402L
throw (int)			// { dg-warning "deprecated" "" { target { c++11 && { ! c++17 } } } }
#endif
;
void b(std::string const &);

void c(std::string *e)
{
  b("");

  try {
      a();
  } catch (...) {
      *e = "";
  }
}

void d() {
    c(0);
}