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 //===----------------------------------------------------------------------===//
11 // reverse_iterator rbegin(); // constexpr since C++20
12 // const_reverse_iterator rbegin() const; // constexpr since C++20
17 #include "test_macros.h"
18 #include "min_allocator.h"
21 TEST_CONSTEXPR_CXX20
void test(S s
) {
23 typename
S::reverse_iterator b
= s
.rbegin();
24 typename
S::const_reverse_iterator cb
= cs
.rbegin();
26 assert(*b
== s
.back());
32 TEST_CONSTEXPR_CXX20
void test_string() {
37 TEST_CONSTEXPR_CXX20
bool test() {
38 test_string
<std::string
>();
39 #if TEST_STD_VER >= 11
40 test_string
<std::basic_string
<char, std::char_traits
<char>, min_allocator
<char> > >();
46 int main(int, char**) {
49 static_assert(test());