// Copyright (C) 2019-2022 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the // terms of the GNU General Public License as published by the // Free Software Foundation; either version 3, or (at your option) // any later version. // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License along // with this library; see the file COPYING3. If not see // . // { dg-options "-std=gnu++2a" } // { dg-do run { target c++2a } } #include #include #include static_assert(__gnu_test::is_customization_point_object(std::ranges::cdata)); template concept has_cdata = requires (T&& t) { std::ranges::cdata(std::forward(t)); }; void test01() { struct R { int i = 0; int j = 0; int* data() { return &j; } const R* data() const noexcept { return nullptr; } }; static_assert( has_cdata ); static_assert( has_cdata ); R r; const R& c = r; VERIFY( std::ranges::cdata(r) == (R*)nullptr ); static_assert( noexcept(std::ranges::cdata(r)) ); VERIFY( std::ranges::cdata(c) == (R*)nullptr ); static_assert( noexcept(std::ranges::cdata(c)) ); // not lvalues and not borrowed ranges static_assert( !has_cdata ); static_assert( !has_cdata ); } void test02() { int a[] = { 0, 1 }; VERIFY( std::ranges::cdata(a) == a + 0 ); static_assert( has_cdata ); static_assert( !has_cdata ); } struct R3 { static inline int i = 0; static inline long l = 0; int* data() &; // this function is not defined friend long* begin(R3&& r); // not defined friend const long* begin(const R3& r) { return &r.l; } friend const short* begin(const R3&&); // not defined }; template<> constexpr bool std::ranges::enable_borrowed_range = true; void test03() { static_assert( has_cdata ); static_assert( has_cdata ); // borrowed range static_assert( has_cdata ); static_assert( has_cdata ); // borrowed range R3 r; const R3& c = r; VERIFY( std::ranges::cdata(r) == std::ranges::data(c) ); VERIFY( std::ranges::cdata(std::move(r)) == std::ranges::data(c) ); VERIFY( std::ranges::cdata(std::move(c)) == std::ranges::begin(c) ); } int main() { test01(); test02(); test03(); }