blob: a2ea6bfb33849abedfae2abee10eb0ffebf27dda [file] [log] [blame]
// P0784R7
// { dg-do compile { target c++11 } }
struct S
{
constexpr S () : s (0) {}
constexpr ~S () {} // { dg-error "'constexpr' destructors only available with" "" { target c++17_down } }
int s;
};