https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86917
--- Comment #10 from CVS Commits <cvs-commit at gcc dot gnu.org> --- The releases/gcc-9 branch has been updated by Jason Merrill <ja...@gcc.gnu.org>: https://gcc.gnu.org/g:054aeaef276572c2ccbedbd7aa86046be338603c commit r9-8324-g054aeaef276572c2ccbedbd7aa86046be338603c Author: Jason Merrill <ja...@redhat.com> Date: Mon Mar 2 14:42:47 2020 -0500 c++: Fix ({ ... }) array mem-initializer. Here, we were going down the wrong path in perform_member_init because of the incorrect parens around the mem-initializer for the array. And then cxx_eval_vec_init_1 didn't know what to do with a CONSTRUCTOR as the initializer. For GCC 9, let's just fix the latter issue. gcc/cp/ChangeLog 2020-03-02 Jason Merrill <ja...@redhat.com> PR c++/86917 * constexpr.c (cxx_eval_vec_init_1): Handle CONSTRUCTOR.