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

struct A { char a = '*'; };
struct B { A b[64]; };

void
foo ()
{
  A a;
  B{a};
}