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

struct A
{
  A(int);
};

struct B
{
  B(A = 0);
};

struct C
{
  B b;
};

C c;