https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80272

--- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Another example from Bug 90851:

struct S { S (); S (int); ~S (); int i; };
struct A { S s[100000]; };

void
foo ()
{
 A a = {{}};
}

Reply via email to