public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "ed at catmur dot uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/109070] New: ICE in class template member function overloads distinguished by non-functionally-equivalent constraints and return type
Date: Wed, 08 Mar 2023 21:01:12 +0000	[thread overview]
Message-ID: <bug-109070-4@http.gcc.gnu.org/bugzilla/> (raw)

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

            Bug ID: 109070
           Summary: ICE in class template member function overloads
                    distinguished by non-functionally-equivalent
                    constraints and return type
           Product: gcc
           Version: 13.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ed at catmur dot uk
  Target Milestone: ---

template<int I> concept C = true;
template<typename T> struct A {
    int f() requires C<42> { return 1; }  // #1
    unsigned f() requires true { return 2u; }  // #2
};
int main() {
    int (A<int>::*p)() = &A<int>::f;
    unsigned (A<int>::*q)() = &A<int>::f;
    return (A<int>().*p)() + (A<int>().*q)();
}

<source>:10:1: error: Two symbols with same comdat_group are not linked by the
same_comdat_group list.
   10 | }
      | ^
_ZN1AIiE1fEv/2 (unsigned int A<T>::f() requires  true [with T = int])
  Type: function definition analyzed
  Visibility: semantic_interposition public weak comdat
comdat_group:_ZN1AIiE1fEv one_only
  previous sharing asm name: 1
  Address is taken.
  References: 
  Referring: main/0 (addr) 
  Function flags: body
  Called by: 
  Calls: 
_ZN1AIiE1fEv/1 (int A<T>::f() requires  C<42> [with T = int])
  Type: function definition analyzed
  Visibility: semantic_interposition public weak comdat
comdat_group:_ZN1AIiE1fEv one_only
  next sharing asm name: 2
  Address is taken.
  References: 
  Referring: main/0 (addr) 
  Function flags: body
  Called by: 
  Calls: 
<source>:10:1: internal compiler error: symtab_node::verify failed
0x247b73e internal_error(char const*, ...)
        ???:0
0xed5c22 symtab_node::verify_symtab_nodes()
        ???:0
0xef042b symbol_table::finalize_compilation_unit()
        ???:0

This is valid per [temp.over.link]/5, but that seems impossible to implement -
I've filed https://github.com/cplusplus/CWG/issues/256.

             reply	other threads:[~2023-03-08 21:01 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-08 21:01 ed at catmur dot uk [this message]
2023-03-08 21:08 ` [Bug c++/109070] " pinskia 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-109070-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).