public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/113629] New: 'deducing this' does not work with conversion operators
@ 2024-01-27 17:01 hewillk at gmail dot com
  2024-01-27 17:02 ` [Bug c++/113629] " hewillk at gmail dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: hewillk at gmail dot com @ 2024-01-27 17:01 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 113629
           Summary: 'deducing this' does not work with conversion
                    operators
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: hewillk at gmail dot com
  Target Milestone: ---

It seems that GCC's deducing this implementation has some issues with derived
classes that inherit from a base class that has conversion operators:

struct Base {
  operator int(this auto&&) {
    return 42;
  }
};

struct Derived : Base {};

int main() {
  Derived derived;
  return static_cast<int>(derived);
}

GCC rejects the above code with:

<source>:11:10: error: invalid 'static_cast' from type 'Derived' to type 'int'
   11 |   return static_cast<int>(derived);
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~

which seems wrong.

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

end of thread, other threads:[~2024-03-06  9:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-27 17:01 [Bug c++/113629] New: 'deducing this' does not work with conversion operators hewillk at gmail dot com
2024-01-27 17:02 ` [Bug c++/113629] " hewillk at gmail dot com
2024-01-27 17:24 ` hewillk at gmail dot com
2024-03-06  9:49 ` cvs-commit at gcc dot gnu.org
2024-03-06  9:50 ` nshead at gcc dot gnu.org

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