1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
13 // template <RandomAccessIterator Iter1, RandomAccessIterator Iter2>
14 // requires HasGreater<Iter1, Iter2>
15 // bool operator>(const reverse_iterator<Iter1>& x, const reverse_iterator<Iter2>& y); // constexpr in C++17
20 #include "test_macros.h"
21 #include "test_iterators.h"
24 TEST_CONSTEXPR_CXX17
void test(It l
, It r
, bool x
) {
25 const std::reverse_iterator
<It
> r1(l
);
26 const std::reverse_iterator
<It
> r2(r
);
27 assert((r1
> r2
) == x
);
30 TEST_CONSTEXPR_CXX17
bool tests() {
31 const char* s
= "1234567890";
32 test(random_access_iterator
<const char*>(s
), random_access_iterator
<const char*>(s
), false);
33 test(random_access_iterator
<const char*>(s
), random_access_iterator
<const char*>(s
+1), true);
34 test(random_access_iterator
<const char*>(s
+1), random_access_iterator
<const char*>(s
), false);
41 int main(int, char**) {
44 static_assert(tests(), "");