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

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

https://gcc.gnu.org/g:8b91e848130e45b427599ad30e99f96e447ea9aa

commit r10-6219-g8b91e848130e45b427599ad30e99f96e447ea9aa
Author: Jason Merrill <ja...@redhat.com>
Date:   Fri Jan 24 18:20:56 2020 -0500

    c++: Fix ICE with lambda in member operator (PR93279)

    Here the problem was that we were remembering the lookup in template scope,
    and then trying to reuse that lookup in the instantiation without
    substituting into it at all.  The simplest solution is to not try to
    remember a lookup that finds a class-scope declaration, as in that case
    doing the normal lookup again at instantiation time will always find the
    right declarations.

        PR c++/93279 - ICE with lambda in member operator.
        * name-lookup.c (maybe_save_operator_binding): Don't remember
        class-scope bindings.

Reply via email to