aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/18_support/comparisons/algorithms/fallback.cc
blob: 05e1bf7775e6634838a370b99705cc96fbe6870a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// { dg-options "-std=gnu++20" }
// { dg-do compile { target c++20 } }

#include <compare>

using std::strong_ordering;
using std::partial_ordering;

namespace adl
{
  struct S { };
  void strong_ordering(const S&, const S&);
  bool operator==(const S&, S&) { return true; }
  bool operator<(const S&, S&) { return true; }
}

template<typename T, typename U>
  concept has_strong_order_fallback = requires (T& t, U& u) {
    std::compare_strong_order_fallback(t, u);
  };

template<typename T, typename U>
  concept has_weak_order_fallback = requires (T& t, U& u) {
    std::compare_weak_order_fallback(t, u);
  };

template<typename T, typename U>
  concept has_partial_order_fallback = requires (T& t, U& u) {
    std::compare_partial_order_fallback(t, u);
  };

using adl::S;

static_assert( has_strong_order_fallback<S, S> );
static_assert( has_strong_order_fallback<const S, S> );
static_assert( ! has_strong_order_fallback<const S, const S> );
static_assert( has_weak_order_fallback<S, S> );
static_assert( has_weak_order_fallback<const S, S> );
static_assert( ! has_weak_order_fallback<const S, const S> );
static_assert( has_partial_order_fallback<S, S> );
static_assert( ! has_partial_order_fallback<const S, S> ); // LWG 3465
static_assert( ! has_partial_order_fallback<const S, const S> );