Files
clang-p2996/libcxx/test/std/ranges/range.req/range.refinements/forward_range.compile.pass.cpp
Arthur O'Dwyer bf150e8dab [libc++] [ranges] ADL-proof ranges::iter_{swap,move}.
As discovered in D117817, `std::ranges::input_range<Holder<Incomplete>*[10]>`
hard-errored before this patch. That's because `input_range` requires
`iter_rvalue_reference_t`, which requires `iter_move`, which was
not ADL-proofed.

Add ADL-proofing tests to all the range refinements.
`output_range` and `common_range` shouldn't be affected,
and all the others subsume `input_range` anyway, but we might as
well be thorough.

Differential Revision: https://reviews.llvm.org/D118213
2022-01-31 14:14:26 -05:00

58 lines
2.6 KiB
C++

//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++03, c++11, c++14, c++17
// UNSUPPORTED: libcpp-no-concepts
// UNSUPPORTED: libcpp-has-no-incomplete-ranges
// template<class R>
// concept forward_range;
#include <ranges>
#include "test_iterators.h"
#include "test_range.h"
template <template <class...> class I>
constexpr bool check_forward_range() {
constexpr bool result = std::ranges::forward_range<test_range<I> >;
static_assert(std::ranges::forward_range<test_range<I> const> == result);
static_assert(std::ranges::forward_range<test_non_const_common_range<I> > == result);
static_assert(std::ranges::forward_range<test_non_const_range<I> > == result);
static_assert(std::ranges::forward_range<test_common_range<I> > == result);
static_assert(std::ranges::forward_range<test_common_range<I> const> == result);
static_assert(!std::ranges::forward_range<test_non_const_common_range<I> const>);
static_assert(!std::ranges::forward_range<test_non_const_range<I> const>);
return result;
}
static_assert(!check_forward_range<cpp17_input_iterator>());
static_assert(!check_forward_range<cpp20_input_iterator>());
static_assert(check_forward_range<forward_iterator>());
static_assert(check_forward_range<bidirectional_iterator>());
static_assert(check_forward_range<random_access_iterator>());
static_assert(check_forward_range<contiguous_iterator>());
// Test ADL-proofing.
struct Incomplete;
template<class T> struct Holder { T t; };
static_assert(!std::ranges::forward_range<Holder<Incomplete>*>);
static_assert(!std::ranges::forward_range<Holder<Incomplete>*&>);
static_assert(!std::ranges::forward_range<Holder<Incomplete>*&&>);
static_assert(!std::ranges::forward_range<Holder<Incomplete>* const>);
static_assert(!std::ranges::forward_range<Holder<Incomplete>* const&>);
static_assert(!std::ranges::forward_range<Holder<Incomplete>* const&&>);
static_assert( std::ranges::forward_range<Holder<Incomplete>*[10]>);
static_assert( std::ranges::forward_range<Holder<Incomplete>*(&)[10]>);
static_assert( std::ranges::forward_range<Holder<Incomplete>*(&&)[10]>);
static_assert( std::ranges::forward_range<Holder<Incomplete>* const[10]>);
static_assert( std::ranges::forward_range<Holder<Incomplete>* const(&)[10]>);
static_assert( std::ranges::forward_range<Holder<Incomplete>* const(&&)[10]>);