(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
init/
aggr8.C
// PR c++/51009

struct A
{
  ~A();
};

struct B
{
  A a;
  B(const A& = A());
};

struct C
{
  B b1, b2;
};

C c = {};