//===----------------------------------------------------------------------===// // // 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 // //===----------------------------------------------------------------------===// // REQUIRES: std-at-least-c++23 // // sentinel() = default; #include #include "../types.h" constexpr bool test() { using Inner = BasicVectorView; using V = BasicVectorView; using Pattern = Inner; using JWV = std::ranges::join_with_view; static_assert(!std::ranges::common_range); [[maybe_unused]] std::ranges::sentinel_t se; [[maybe_unused]] std::ranges::sentinel_t cse; return true; } int main(int, char**) { test(); static_assert(test()); return 0; }