public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/114078] New: operator new and operator delete are incorrectly acceptable as explicit object member functions
@ 2024-02-23 13:57 de34 at live dot cn
  2024-02-23 17:47 ` [Bug c++/114078] " pinskia at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: de34 at live dot cn @ 2024-02-23 13:57 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 114078
           Summary: operator new and operator delete are incorrectly
                    acceptable as explicit object member functions
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Keywords: accepts-invalid
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: de34 at live dot cn
  Target Milestone: ---

GCC currently accepts this wrong program while it shouldn't
(https://godbolt.org/z/7jGnGqYPM), because member operator new/operator delete
are always static member functions.

#include <cstddef>
#include <new>

struct S {
    void* operator new(this std::size_t);
    void operator delete(this S*, std::destroying_delete_t);

    operator S*() const;
    operator std::size_t() const;
};

int main()
{
    S{}.operator new();
    S{}.operator delete(std::destroying_delete);
}

Similar to https://github.com/llvm/llvm-project/issues/82249 which is fixed
recently.

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

end of thread, other threads:[~2024-04-23  6:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-23 13:57 [Bug c++/114078] New: operator new and operator delete are incorrectly acceptable as explicit object member functions de34 at live dot cn
2024-02-23 17:47 ` [Bug c++/114078] " pinskia at gcc dot gnu.org
2024-04-23  6:00 ` cvs-commit at gcc dot gnu.org
2024-04-23  6:01 ` 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).