(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
constexpr-sassert.C
// Allow static_assert in constexpr constructors, too.
// { dg-do compile { target c++11 } }

template<typename T>
struct A
{
  int i;

  constexpr A(int i) : i(i)
  {
    static_assert(sizeof(T) == 1, "");
  }
};