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-no-concepts 11 // UNSUPPORTED: gcc-10 12 // XFAIL: msvc && clang 13 14 // path 15 16 #include "filesystem_include.h" 17 18 #include <concepts> 19 #include <ranges> 20 21 namespace stdr = std::ranges; 22 23 static_assert(std::same_as<stdr::iterator_t<fs::path>, fs::path::iterator>); 24 static_assert(stdr::common_range<fs::path>); 25 26 static_assert(std::same_as<stdr::iterator_t<fs::path const>, fs::path::const_iterator>); 27 static_assert(stdr::common_range<fs::path const>); 28