diff --git a/gcc/cp/typeck.cc b/gcc/cp/typeck.cc index d5757b27f499..7dfe5acc67e8 100644 --- a/gcc/cp/typeck.cc +++ b/gcc/cp/typeck.cc @@ -6215,8 +6215,9 @@ cp_build_binary_op (const op_location_t &location, tree_code orig_code0 = TREE_CODE (orig_type0); tree orig_type1 = TREE_TYPE (orig_op1); tree_code orig_code1 = TREE_CODE (orig_type1); - if (!result_type) - /* Nope. */; + if (!result_type || result_type == error_mark_node) + /* Nope. */ + result_type = NULL_TREE; else if ((orig_code0 == BOOLEAN_TYPE) != (orig_code1 == BOOLEAN_TYPE)) /* "If one of the operands is of type bool and the other is not, the program is ill-formed." */ diff --git a/gcc/testsuite/g++.dg/cpp2a/spaceship-sfinae2.C b/gcc/testsuite/g++.dg/cpp2a/spaceship-sfinae2.C new file mode 100644 index 000000000000..7105a2c7f2a6 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp2a/spaceship-sfinae2.C @@ -0,0 +1,29 @@ +// PR c++/107542 +// { dg-do compile { target c++20 } } + +#include + +template +concept same_as = __is_same(T, U); + +template +concept Ord = requires(Lhs lhs, Rhs rhs) { + { lhs <=> rhs } -> same_as; +}; + +static_assert(Ord); // Works. +static_assert(!Ord); // ICE. + +template +struct S { + T* p; +}; + +template + requires(Ord) +constexpr inline auto operator<=>(const S& l, const S& r) noexcept { + return l.p <=> r.p; +} + +static_assert(Ord, S>); // Works. +static_assert(!Ord, S>); // ICE.