1 //===----------------------------------------------------------------------===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8 
9 // UNSUPPORTED: c++03, c++11, c++14, c++17
10 // UNSUPPORTED: libcpp-no-concepts
11 // UNSUPPORTED: gcc-10
12 
13 // string
14 
15 #include <string>
16 
17 #include <concepts>
18 #include <ranges>
19 
20 namespace stdr = std::ranges;
21 
22 static_assert(std::same_as<stdr::iterator_t<std::string>, std::string::iterator>);
23 static_assert(stdr::common_range<std::string>);
24 static_assert(stdr::random_access_range<std::string>);
25 static_assert(!stdr::view<std::string>);
26 
27 static_assert(std::same_as<stdr::iterator_t<std::string const>, std::string::const_iterator>);
28 static_assert(stdr::common_range<std::string const>);
29 static_assert(stdr::random_access_range<std::string const>);
30 static_assert(!stdr::view<std::string const>);
31