https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99650

--- Comment #5 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Jakub Jelinek <ja...@gcc.gnu.org>:

https://gcc.gnu.org/g:3e07e7a6a7f34f0ec2f1a3e50ebc52b77de11a30

commit r11-7776-g3e07e7a6a7f34f0ec2f1a3e50ebc52b77de11a30
Author: Jakub Jelinek <ja...@redhat.com>
Date:   Tue Mar 23 10:23:42 2021 +0100

    c++: Diagnose references to void in structured bindings [PR99650]

    We ICE on the following testcase, because std::tuple_element<...,...>::type
    is void and for structured bindings we therefore need to create
    void & or void && which is invalid.  We created such REFERENCE_TYPE and
    later ICEd in the middle-end.
    The following patch fixes it by diagnosing that.

    2021-03-23  Jakub Jelinek  <ja...@redhat.com>

            PR c++/99650
            * decl.c (cp_finish_decomp): Diagnose void initializers when
            using tuple_element and get.

            * g++.dg/cpp1z/decomp55.C: New test.

Reply via email to