(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
constexpr-ctor10.C
// PR c++/52599
// { dg-do compile { target c++11 } }

struct foo {
  constexpr foo() try { } catch(...) { };  // { dg-error "constexpr" "" { target c++17_down } }
};