1 // PR c++/93033
2 // { dg-do compile { target c++11 } }
3 
4 struct A {
5   A ();
6   ~A ();
7 };
8 
9 A f();
10 
11 struct B {
12   A a;
13   bool b;
14 };
15 
16 void
foo()17 foo ()
18 {
19   B i[] { f() };
20 }
21