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

template <class T> struct A
{
  T t;
  constexpr A() { }		// { dg-error "::t" "" { target c++17_down } }
};

int main()
{
  constexpr A<int> a;		// { dg-error "A()" }
}