view gcc/testsuite/g++.dg/torture/pr46364.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { 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);
}