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
10*71909de3SMark de Wever // UNSUPPORTED: libcpp-has-no-incomplete-ranges
11d8fad661SChristopher Di Bella 
12d8fad661SChristopher Di Bella // template<class T>
13d8fad661SChristopher Di Bella // concept sized_range;
14d8fad661SChristopher Di Bella 
15d8fad661SChristopher Di Bella #include <ranges>
16d8fad661SChristopher Di Bella 
17d8fad661SChristopher Di Bella template <std::ranges::range R>
check_subsumption()18d8fad661SChristopher Di Bella consteval bool check_subsumption() {
19d8fad661SChristopher Di Bella   return false;
20d8fad661SChristopher Di Bella }
21d8fad661SChristopher Di Bella 
22d8fad661SChristopher Di Bella template <std::ranges::sized_range R>
check_subsumption()23d8fad661SChristopher Di Bella consteval bool check_subsumption() {
24d8fad661SChristopher Di Bella   return true;
25d8fad661SChristopher Di Bella }
26d8fad661SChristopher Di Bella 
27d8fad661SChristopher Di Bella static_assert(check_subsumption<int[5]>());
28