]> 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
7adcbafe 1// Copyright (C) 2019-2022 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>
22#include <vector>
23#include <testsuite_hooks.h>
f9c2ce1d 24#include <testsuite_iterators.h>
8857080c
JW
25
26constexpr char str[] = "abcdefg";
f9c2ce1d 27constexpr std::basic_string_view<char> s(std::begin(str), std::cend(str) - 1);
8857080c
JW
28static_assert( s == str );
29static_assert( s.data() == str );
f9c2ce1d
JW
30constexpr std::basic_string_view ctad(std::begin(str), std::cend(str) - 1);
31static_assert( ctad == s );
32
33// The standard does not require this constructor to have a noexcept-specifier.
34static_assert( noexcept(std::basic_string_view<char>(str, str)) );
35using I = __gnu_test::contiguous_iterator_wrapper<char>;
36static_assert( ! noexcept(std::basic_string_view<char>(I{}, I{})) );
8857080c
JW
37
38void
39test01()
40{
41 std::vector<char> v{'a', 'b', 'c'};
f9c2ce1d 42 std::basic_string_view<char> s(v.begin(), v.end());
8857080c 43 VERIFY( s.data() == v.data() );
f9c2ce1d
JW
44 std::basic_string_view ctad(v.begin(), v.end());
45 VERIFY( ctad == s );
8857080c
JW
46}
47
48int
49main()
50{
51 test01();
52}