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

--- Comment #7 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Patrick Palka <ppa...@gcc.gnu.org>:

https://gcc.gnu.org/g:613497aa6e28ca009d8498002424019d2a8a9ca5

commit r12-1945-g613497aa6e28ca009d8498002424019d2a8a9ca5
Author: Patrick Palka <ppa...@redhat.com>
Date:   Wed Jun 30 20:21:16 2021 -0400

    c++: Extend the PR96204 fix to variable templates too

    r12-1829 corrected the access scope during partial specialization
    matching of class templates, but overlooked the variable template case.
    This patch moves the access scope adjustment to within
    most_specialized_partial_spec so that all callers can benefit.

    This patch also adjusts a couple of these callers to avoid always
    passing the most general template of a variable template specialization,
    since that'd cause us to push the wrong access scope for e.g. the second
    testcase below (we'd push A<T> instead of A<int>/A<char>).  We ought to
    be passing the partially instantiated template instead.

            PR c++/96204

    gcc/cp/ChangeLog:

            * pt.c (finish_template_variable): Pass the partially
            instantiated template and its args to instantiate_template.
            (instantiate_class_template_1): No need to call
            push_nested_class and pop_nested_class around the call to
            most_specialized_partial_spec.
            (instantiate_template_1): Pass the partially instantiated
            template to lookup_template_variable.
            (most_specialized_partial_spec):  Use push_access_scope_guard
            to set the access scope appropriately.  Use
            deferring_access_check_sentinel to force access to get checked
            immediately.
            (instantiate_decl): Just pass the VAR_DECL to
            most_specialized_partial_spec.

    gcc/testsuite/ChangeLog:

            * g++.dg/template/access41.C: New test.
            * g++.dg/template/access41a.C: New test.

Reply via email to