1d8fad661SChristopher Di Bella //===----------------------------------------------------------------------===//
2d8fad661SChristopher Di Bella //
3d8fad661SChristopher Di Bella // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4d8fad661SChristopher Di Bella // See https://llvm.org/LICENSE.txt for license information.
5d8fad661SChristopher Di Bella // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6d8fad661SChristopher Di Bella //
7d8fad661SChristopher Di Bella //===----------------------------------------------------------------------===//
8d8fad661SChristopher Di Bella 
9d8fad661SChristopher Di Bella // UNSUPPORTED: c++03, c++11, c++14, c++17
1071909de3SMark de Wever // UNSUPPORTED: libcpp-has-no-incomplete-ranges
11d8fad661SChristopher Di Bella 
12f192616cSLouis Dionne // template<class R>
13f192616cSLouis Dionne // concept forward_range;
14d8fad661SChristopher Di Bella 
15d8fad661SChristopher Di Bella #include <ranges>
16d8fad661SChristopher Di Bella 
17d8fad661SChristopher Di Bella #include "test_iterators.h"
18d8fad661SChristopher Di Bella #include "test_range.h"
19d8fad661SChristopher Di Bella 
20d8fad661SChristopher Di Bella template <template <class...> class I>
check_forward_range()21d8fad661SChristopher Di Bella constexpr bool check_forward_range() {
229d7c420aSLouis Dionne   constexpr bool result = std::ranges::forward_range<test_range<I> >;
239d7c420aSLouis Dionne   static_assert(std::ranges::forward_range<test_range<I> const> == result);
249d7c420aSLouis Dionne   static_assert(std::ranges::forward_range<test_non_const_common_range<I> > == result);
259d7c420aSLouis Dionne   static_assert(std::ranges::forward_range<test_non_const_range<I> > == result);
269d7c420aSLouis Dionne   static_assert(std::ranges::forward_range<test_common_range<I> > == result);
279d7c420aSLouis Dionne   static_assert(std::ranges::forward_range<test_common_range<I> const> == result);
289d7c420aSLouis Dionne   static_assert(!std::ranges::forward_range<test_non_const_common_range<I> const>);
299d7c420aSLouis Dionne   static_assert(!std::ranges::forward_range<test_non_const_range<I> const>);
30d8fad661SChristopher Di Bella   return result;
31d8fad661SChristopher Di Bella }
32d8fad661SChristopher Di Bella 
33d8fad661SChristopher Di Bella static_assert(!check_forward_range<cpp17_input_iterator>());
34d8fad661SChristopher Di Bella static_assert(!check_forward_range<cpp20_input_iterator>());
35d8fad661SChristopher Di Bella static_assert(check_forward_range<forward_iterator>());
36d8fad661SChristopher Di Bella static_assert(check_forward_range<bidirectional_iterator>());
37d8fad661SChristopher Di Bella static_assert(check_forward_range<random_access_iterator>());
38d8fad661SChristopher Di Bella static_assert(check_forward_range<contiguous_iterator>());
39*bf150e8dSArthur O'Dwyer 
40*bf150e8dSArthur O'Dwyer // Test ADL-proofing.
41*bf150e8dSArthur O'Dwyer struct Incomplete;
42*bf150e8dSArthur O'Dwyer template<class T> struct Holder { T t; };
43*bf150e8dSArthur O'Dwyer 
44*bf150e8dSArthur O'Dwyer static_assert(!std::ranges::forward_range<Holder<Incomplete>*>);
45*bf150e8dSArthur O'Dwyer static_assert(!std::ranges::forward_range<Holder<Incomplete>*&>);
46*bf150e8dSArthur O'Dwyer static_assert(!std::ranges::forward_range<Holder<Incomplete>*&&>);
47*bf150e8dSArthur O'Dwyer static_assert(!std::ranges::forward_range<Holder<Incomplete>* const>);
48*bf150e8dSArthur O'Dwyer static_assert(!std::ranges::forward_range<Holder<Incomplete>* const&>);
49*bf150e8dSArthur O'Dwyer static_assert(!std::ranges::forward_range<Holder<Incomplete>* const&&>);
50*bf150e8dSArthur O'Dwyer 
51*bf150e8dSArthur O'Dwyer static_assert( std::ranges::forward_range<Holder<Incomplete>*[10]>);
52*bf150e8dSArthur O'Dwyer static_assert( std::ranges::forward_range<Holder<Incomplete>*(&)[10]>);
53*bf150e8dSArthur O'Dwyer static_assert( std::ranges::forward_range<Holder<Incomplete>*(&&)[10]>);
54*bf150e8dSArthur O'Dwyer static_assert( std::ranges::forward_range<Holder<Incomplete>* const[10]>);
55*bf150e8dSArthur O'Dwyer static_assert( std::ranges::forward_range<Holder<Incomplete>* const(&)[10]>);
56*bf150e8dSArthur O'Dwyer static_assert( std::ranges::forward_range<Holder<Incomplete>* const(&&)[10]>);
57