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-has-no-incomplete-ranges
11 
12 // Test that single_view conforms to range and view concepts.
13 
14 #include <ranges>
15 
16 #include <cassert>
17 #include <concepts>
18 
19 #include "test_iterators.h"
20 
21 struct Empty {};
22 
23 static_assert(std::ranges::contiguous_range<std::ranges::single_view<Empty>>);
24 static_assert(std::ranges::contiguous_range<const std::ranges::single_view<Empty>>);
25 static_assert(std::ranges::view<std::ranges::single_view<Empty>>);
26 static_assert(std::ranges::view<std::ranges::single_view<const Empty>>);
27 static_assert(std::ranges::contiguous_range<const std::ranges::single_view<const Empty>>);
28 static_assert(std::ranges::view<std::ranges::single_view<int>>);
29 static_assert(std::ranges::view<std::ranges::single_view<const int>>);
30 static_assert(std::ranges::contiguous_range<const std::ranges::single_view<const int>>);
31