public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/113529] New: Incorrect result of requires-expression in case of function call ambiguity
@ 2024-01-21  8:51 fchelnokov at gmail dot com
  2024-01-21  9:03 ` [Bug c++/113529] Incorrect result of requires-expression in case of function call ambiguity and `operator<=>` pinskia at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: fchelnokov at gmail dot com @ 2024-01-21  8:51 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 113529
           Summary: Incorrect result of requires-expression in case of
                    function call ambiguity
           Product: gcc
           Version: 13.2.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: fchelnokov at gmail dot com
  Target Milestone: ---

In this program


#include <compare>

struct A { 
    auto operator <=>(const A&) const = default;
    bool operator <(const A&) const = default;
};
struct B { 
    auto operator <=>(const B&) const = default; 
};
struct C : A, B {};

template<typename T>
concept Cmp = requires(T u, T v) { u < v; };

//auto cmp = C{} < C{}; //this correctly fails due to ambiguity
static_assert( !Cmp<C> ); //but this evaluates wrongly in GCC


C{} < C{} is correctly rejected as ambiguous, but for some reason `requires` in
GCC returns that the objects can be compared. This program is accepted by Clang
truck (to be v18). Online demo: https://godbolt.org/z/76zoYMd6h

Explanation of ambiguity: https://stackoverflow.com/a/69245639/7325599

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

end of thread, other threads:[~2024-01-26 14:43 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-21  8:51 [Bug c++/113529] New: Incorrect result of requires-expression in case of function call ambiguity fchelnokov at gmail dot com
2024-01-21  9:03 ` [Bug c++/113529] Incorrect result of requires-expression in case of function call ambiguity and `operator<=>` pinskia at gcc dot gnu.org
2024-01-22 18:15 ` ppalka at gcc dot gnu.org
2024-01-24 22:11 ` cvs-commit at gcc dot gnu.org
2024-01-26 14:42 ` cvs-commit at gcc dot gnu.org
2024-01-26 14:43 ` ppalka 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).