public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "sfranzen85 at hotmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/97214] New: ICE in lookup_template_class_1, at cp/pt.c:9896
Date: Sat, 26 Sep 2020 15:38:10 +0000	[thread overview]
Message-ID: <bug-97214-4@http.gcc.gnu.org/bugzilla/> (raw)

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

            Bug ID: 97214
           Summary: ICE in lookup_template_class_1, at cp/pt.c:9896
           Product: gcc
           Version: 10.2.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sfranzen85 at hotmail dot com
  Target Milestone: ---

The following snippet reproduces an error I encountered with lambdas:

struct Foo {
    // void operator()(int) {}

    template<typename T>
    void operator()(T, T)
    {
        auto bar = [this](auto&& v){ operator()(v); };
    }
};

int main ()
{
    Foo{}(0,1);
    return 0;
}

Full error:
../src/main.cpp: In instantiation of ‘void Foo::operator()(T, T) [with T =
int]’:
../src/main.cpp:13:14:   required from here
../src/main.cpp:7:38: internal compiler error: in lookup_template_class_1, at
cp/pt.c:9896
    7 |         auto bar = [this](auto&& v){ operator()(v); };
      |                                      ^~~~~~~~~~

Further observations:
* The error appears regardless of available operator()() overloads;
* It only appears if the function call is unqualified, e.g. (*this)(v) is fine
if the overload exists.

A possibly related error is given using a version of Foo without a function
template:
struct Foo {
    void operator()(int) {}

    void operator()(int a, int)
    {
        auto bar = [this](auto&& v){ operator()(v); };
        bar(a);
    }
};

../src/main.cpp: In instantiation of ‘Foo::operator()(int,
int)::<lambda(auto:1&&)> [with auto:1 = int&]’:
../src/main.cpp:8:14:   required from here
../src/main.cpp:7:48: error: use of ‘Foo::operator()(int,
int)::<lambda(auto:1&&)> [with auto:1 = int&]’ before deduction of ‘auto’
    7 |         auto bar = [this](auto&& v){ operator()(v); };
      |                                      ~~~~~~~~~~^~~

This error similarly only appears with the unqualified call, and also
disappears if the lambda has '-> void'.

             reply	other threads:[~2020-09-26 15:38 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-26 15:38 sfranzen85 at hotmail dot com [this message]
2020-09-27 19:47 ` [Bug c++/97214] " sfranzen85 at hotmail dot com
2020-10-26 17:16 ` [Bug c++/97214] [8/9/10/11 Regression] " mpolacek at gcc dot gnu.org
2020-10-26 17:17 ` mpolacek at gcc dot gnu.org
2021-03-12  0:20 ` mpolacek at gcc dot gnu.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-97214-4@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).