[Bug c++/65154] ICE with {} initialized array with string

2015-02-26 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65154 Marek Polacek mpolacek at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |NEW Last

[Bug c++/65154] ICE with {} initialized array with string

2015-02-24 Thread maltsevm at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65154 Mikhail Maltsev maltsevm at gmail dot com changed: What|Removed |Added CC||maltsevm at

[Bug c++/65154] ICE with {} initialized array with string

2015-02-21 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65154 --- Comment #1 from Andrew Pinski pinskia at gcc dot gnu.org --- Reduced testcase: struct ss { ss() {}; }; struct C { ss s; }; int main() { C cs[5]{}; }