// Copyright (C) 2019-2023 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 compile { target c++2a } } #include using std::span; using std::is_nothrow_constructible_v; static_assert( is_nothrow_constructible_v> ); static_assert( is_nothrow_constructible_v> ); static_assert( is_nothrow_constructible_v, span&> ); static_assert( is_nothrow_constructible_v, span&> ); static_assert( is_nothrow_constructible_v, span&> ); static_assert( is_nothrow_constructible_v, span&> ); static_assert( is_nothrow_constructible_v, span&> ); static_assert( is_nothrow_constructible_v, span&> ); static_assert( is_nothrow_constructible_v, int(&)[1]> ); static_assert( is_nothrow_constructible_v, int(&)[1]> ); static_assert( is_nothrow_constructible_v, std::array&> ); static_assert( is_nothrow_constructible_v, std::array&> ); template struct sentinel { int* p; }; template bool operator==(sentinel s, int* p) noexcept { return s.p == p; } template std::ptrdiff_t operator-(sentinel s, int* p) noexcept(B) { return s.p - p; } template std::ptrdiff_t operator-(int* p, sentinel s) noexcept { return p - s.p; } static_assert(std::sized_sentinel_for, int*>); static_assert(std::sized_sentinel_for, int*>); static_assert(is_nothrow_constructible_v, int*, std::size_t>); static_assert(is_nothrow_constructible_v, int*, const int*>); static_assert(is_nothrow_constructible_v, int*, sentinel>); static_assert(!is_nothrow_constructible_v, int*, sentinel>);