[libcxx-commits] [libcxx] [libc++][test] enable_borrowed_range compile -> verify for ranges::as_rvalue_view (PR #75066)

Will Hawkins via libcxx-commits libcxx-commits at lists.llvm.org
Mon Dec 11 10:43:48 PST 2023


================
@@ -0,0 +1,19 @@
+//===----------------------------------------------------------------------===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+
+// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
+
+#include <ranges>
+#include <vector>
+
+static_assert(std::ranges::enable_borrowed_range<
+              std::ranges::as_rvalue_view<std::ranges::empty_view<int>>>); // expected-no-diagnostics
----------------
hawkinsw wrote:

Thanks!! I will make that fix. 

I hope that this is an acceptable to PR. I know that @var-const is trying to get us all to use the proper extensions for tests and thought that I could help at least a little!

https://github.com/llvm/llvm-project/pull/75066


More information about the libcxx-commits mailing list