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

--- Comment #6 from GCC Commits <cvs-commit at gcc dot gnu.org> ---
The releases/gcc-14 branch has been updated by Patrick Palka
<ppa...@gcc.gnu.org>:

https://gcc.gnu.org/g:a00a8d46ea6ff7130e2493e7bd9824e28e2509b7

commit r14-10358-ga00a8d46ea6ff7130e2493e7bd9824e28e2509b7
Author: Patrick Palka <ppa...@redhat.com>
Date:   Tue Jun 25 12:59:24 2024 -0400

    c++: alias CTAD and copy deduction guide [PR115198]

    Here we're neglecting to update DECL_NAME during the alias CTAD guide
    transformation, which causes copy_guide_p to return false for the
    transformed copy deduction guide since DECL_NAME is still __dguide_C
    with TREE_TYPE C<B, T> but it should be __dguide_A with TREE_TYPE A<T>
    (i.e. C<false, T>).  This ultimately results in ambiguity during
    overload resolution between the copy deduction guide vs copy ctor guide.

    This patch makes us update DECL_NAME of a transformed guide accordingly
    during alias/inherited CTAD.

            PR c++/115198

    gcc/cp/ChangeLog:

            * pt.cc (alias_ctad_tweaks): Update DECL_NAME of the transformed
            guides.

    gcc/testsuite/ChangeLog:

            * g++.dg/cpp2a/class-deduction-alias22.C: New test.

    Reviewed-by: Jason Merrill <ja...@redhat.com>
    (cherry picked from commit 06ebb7c6f31fe42ffdea6f51ac1ba1f6b058c090)

Reply via email to