c++: designated init and aggregate members [PR103337]
commit24d51e749570dcb85bd43d3b528f58ad6141de26
authorJason Merrill <jason@redhat.com>
Mon, 21 Mar 2022 13:57:28 +0000 (21 09:57 -0400)
committerJason Merrill <jason@redhat.com>
Mon, 21 Mar 2022 20:47:04 +0000 (21 16:47 -0400)
treeb03f3d2b85f39d1aaf47e87fc2ebc514b814ac7e
parente3e191b4104c7d6a177f66dbb77cabf05ab63781
c++: designated init and aggregate members [PR103337]

Our C++20 designated initializer handling was broken with members of class
type; we would find the relevant member and then try to find a member of
the member with the same name.  Or we would sometimes ignore the designator
entirely.  The former problem is fixed by the change to reshape_init_class,
the latter by the change to reshape_init_r.

PR c++/103337
PR c++/102740
PR c++/103299
PR c++/102538

gcc/cp/ChangeLog:

* decl.cc (reshape_init_class): Avoid looking for designator
after we found it.
(reshape_init_r): Keep looking for designator.

gcc/testsuite/ChangeLog:

* g++.dg/ext/flexary3.C: Remove one error.
* g++.dg/parse/pr43765.C: Likewise.
* g++.dg/cpp2a/desig22.C: New test.
* g++.dg/cpp2a/desig23.C: New test.
* g++.dg/cpp2a/desig24.C: New test.
* g++.dg/cpp2a/desig25.C: New test.
gcc/cp/decl.cc
gcc/testsuite/g++.dg/cpp2a/desig22.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp2a/desig23.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp2a/desig24.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp2a/desig25.C [new file with mode: 0644]
gcc/testsuite/g++.dg/ext/flexary3.C
gcc/testsuite/g++.dg/parse/pr43765.C