[Bug c++/60951] [4.9 Regression][C++11] ICE with braced-init-list assignment and constexpr constructor
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60951 radiantstatue at gmail dot com changed: What|Removed |Added Severity|major |normal
[Bug c++/60951] New: [4.9 Regression][C++11] ICE with braced-init-list assignment and constexpr constructor
Severity: major Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: radiantstatue at gmail dot com Test case: struct Foo { constexpr Foo(int x = 0) : memb(x) {} int memb; }; struct FooContainer { Foo foo[2]; }; void fubar