1 // PR c++/92524
2 // { dg-do compile { target c++11 } }
3 
4 struct A { char a = '*'; };
5 struct B { A b[64]; };
6 
7 void
foo()8 foo ()
9 {
10   A a;
11   B{a};
12 }
13