(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
constexpr-array.C
// { dg-do compile { target c++11 } }
// { dg-final { scan-assembler-not "static_initialization" } }

struct A
{
  int i;
  constexpr A(): i(0) { }
};

struct B
{
  A a[4];
};

extern const B b{};