[Bug c++/65154] ICE with {} initialized array with string
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65154 Marek Polacek changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|
[Bug c++/65154] ICE with {} initialized array with string
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65154 Mikhail Maltsev changed: What|Removed |Added CC||maltsevm at gmail dot com --- Comment
[Bug c++/65154] ICE with {} initialized array with string
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65154 --- Comment #1 from Andrew Pinski --- Reduced testcase: struct ss { ss() {}; }; struct C { ss s; }; int main() { C cs[5]{}; }