blob: ffbcd8f9f3abee58e86bb24818b76b080ec168ed [file] [log] [blame]
// PR c++/92524
// { dg-do compile { target c++11 } }
struct A { char a = '*'; };
struct B { A b[64]; };
void
foo ()
{
A a;
B{a};
}