(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp1y/
nsdmi-aggr4.C
// { dg-do compile { target c++14 } }

struct A
{
  A(int);
};

struct B
{
  A a{42};
};

B f() { return {}; }