(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp1y/
constexpr-nsdmi10.C
// PR c++/101073
// { dg-do compile { target c++14 } }
// { dg-additional-options "-fno-elide-constructors" }
// A copy of constexpr-nsdmi9.C.

struct Y
{
  int a;
};

struct X
{
  Y b = (c={5});
  Y c = (b={1});
};

constexpr X o = { };
static_assert(o.b.a == 1 && o.c.a == 1, "");