#include <cassert>
#include <ranges>
#include <type_traits>
#include <utility>
struct View : std::ranges::view_interface<View> {
int* begin() const;
int* end() const;
};
struct Pred {
int i;
bool operator()(int) const;
};
constexpr bool test() {
{
std::ranges::take_while_view<View, Pred> twv{{}, Pred{5}};
decltype(auto) x = twv.pred();
static_assert(std::same_as<decltype(x), Pred const&>);
assert(x.i == 5);
}
{
const std::ranges::take_while_view<View, Pred> twv{{}, Pred{5}};
decltype(auto) x = twv.pred();
static_assert(std::same_as<decltype(x), Pred const&>);
assert(x.i == 5);
}
{
std::ranges::take_while_view<View, Pred> twv{{}, Pred{5}};
decltype(auto) x = std::move(twv).pred();
static_assert(std::same_as<decltype(x), Pred const&>);
assert(x.i == 5);
}
{
const std::ranges::take_while_view<View, Pred> twv{{}, Pred{5}};
decltype(auto) x = std::move(twv).pred();
static_assert(std::same_as<decltype(x), Pred const&>);
assert(x.i == 5);
}
return true;
}
int main(int, char**) {
test();
static_assert(test());
return 0;
}