public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/102465] New: Inaccessible operator == breaks child class with spaceship operator
@ 2021-09-23  7:05 fchelnokov at gmail dot com
  2021-09-23  7:08 ` [Bug c++/102465] " pinskia at gcc dot gnu.org
  2021-09-23  7:12 ` fchelnokov at gmail dot com
  0 siblings, 2 replies; 3+ messages in thread
From: fchelnokov at gmail dot com @ 2021-09-23  7:05 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 102465
           Summary: Inaccessible operator == breaks child class with
                    spaceship operator
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: fchelnokov at gmail dot com
  Target Milestone: ---

Below code is valid:
```
#include <compare>

struct A { 
    std::strong_ordering operator <=>(const A &) const = default;
    bool operator==(int) const;
};

struct B : A { 
    virtual std::strong_ordering operator <=>(const B &) const noexcept =
default;
};

B b; //GCC error here
```
but GCC prints an error compiling it. Demo: https://gcc.godbolt.org/z/584nhfxxs

It shall just delete `operator ==` in B.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-09-23  7:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-23  7:05 [Bug c++/102465] New: Inaccessible operator == breaks child class with spaceship operator fchelnokov at gmail dot com
2021-09-23  7:08 ` [Bug c++/102465] " pinskia at gcc dot gnu.org
2021-09-23  7:12 ` fchelnokov at gmail dot com

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).