]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/21_strings/basic_string_view/cons/char/range.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string_view / cons / char / range.cc
CommitLineData
83ffe9cd 1// Copyright (C) 2019-2023 Free Software Foundation, Inc.
8857080c
JW
2//
3// This file is part of the GNU ISO C++ Library. This library is free
4// software; you can redistribute it and/or modify it under the
5// terms of the GNU General Public License as published by the
6// Free Software Foundation; either version 3, or (at your option)
7// any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License along
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
17
f9c2ce1d
JW
18// { dg-options "-std=gnu++20" }
19// { dg-do run { target c++20 } }
8857080c
JW
20
21#include <string_view>
8857080c 22#include <testsuite_hooks.h>
f9c2ce1d 23#include <testsuite_iterators.h>
8857080c 24
42d3f743
AA
25#if __STDC_HOSTED__
26# include <vector>
27#endif // HOSTED
28
8857080c 29constexpr char str[] = "abcdefg";
f9c2ce1d 30constexpr std::basic_string_view<char> s(std::begin(str), std::cend(str) - 1);
8857080c
JW
31static_assert( s == str );
32static_assert( s.data() == str );
f9c2ce1d
JW
33constexpr std::basic_string_view ctad(std::begin(str), std::cend(str) - 1);
34static_assert( ctad == s );
35
36// The standard does not require this constructor to have a noexcept-specifier.
37static_assert( noexcept(std::basic_string_view<char>(str, str)) );
38using I = __gnu_test::contiguous_iterator_wrapper<char>;
39static_assert( ! noexcept(std::basic_string_view<char>(I{}, I{})) );
8857080c
JW
40
41void
42test01()
43{
42d3f743 44#if __STDC_HOSTED__
8857080c 45 std::vector<char> v{'a', 'b', 'c'};
f9c2ce1d 46 std::basic_string_view<char> s(v.begin(), v.end());
8857080c 47 VERIFY( s.data() == v.data() );
f9c2ce1d
JW
48 std::basic_string_view ctad(v.begin(), v.end());
49 VERIFY( ctad == s );
42d3f743 50#endif // HOSTED
8857080c
JW
51}
52
53int
54main()
55{
56 test01();
57}