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

struct A {
  A ();
  ~A ();
};

A f();

struct B {
  A a;
  bool b;
};

void
foo ()
{
  B i[] { f() };
}