Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / test / std / strings / basic.string / range_concept_conformance.compile.pass.cpp
blobb6afc20e3cccb0c61c2c26c45765393e9952d205
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 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: c++03, c++11, c++14, c++17
11 // string
13 #include <string>
15 #include <concepts>
16 #include <ranges>
18 static_assert(std::same_as<std::ranges::iterator_t<std::string>, std::string::iterator>);
19 static_assert(std::ranges::common_range<std::string>);
20 static_assert(std::ranges::random_access_range<std::string>);
21 static_assert(std::ranges::contiguous_range<std::string>);
22 static_assert(!std::ranges::view<std::string>);
23 static_assert(std::ranges::sized_range<std::string>);
24 static_assert(!std::ranges::borrowed_range<std::string>);
25 static_assert(std::ranges::viewable_range<std::string>);
27 static_assert(std::same_as<std::ranges::iterator_t<std::string const>, std::string::const_iterator>);
28 static_assert(std::ranges::common_range<std::string const>);
29 static_assert(std::ranges::random_access_range<std::string const>);
30 static_assert(std::ranges::contiguous_range<std::string const>);
31 static_assert(!std::ranges::view<std::string const>);
32 static_assert(std::ranges::sized_range<std::string const>);
33 static_assert(!std::ranges::borrowed_range<std::string const>);
34 static_assert(!std::ranges::viewable_range<std::string const>);