https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61592
Bug ID: 61592 Summary: ICE with large array with initialization Product: gcc Version: 4.9.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: jakub at gcc dot gnu.org Another testcase similar to PR59659, on which we ICE because of too deep stack recursion and which should be hopefully fixed with RANGE_EXPRs struct A { A (); ~A (); int a; }; struct B { A a[200]; }; struct C { B b[200][10]; }; const C c = {};