]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/21_strings/basic_string_view/cons/char/range.cc
libstdc++: Remove dg-options "-std=gnu++20" from 21_strings tests
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string_view / cons / char / range.cc
1 // Copyright (C) 2019-2023 Free Software Foundation, Inc.
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
18 // { dg-do run { target c++20 } }
19
20 #include <string_view>
21 #include <testsuite_hooks.h>
22 #include <testsuite_iterators.h>
23
24 #if __STDC_HOSTED__
25 # include <vector>
26 #endif // HOSTED
27
28 constexpr char str[] = "abcdefg";
29 constexpr std::basic_string_view<char> s(std::begin(str), std::cend(str) - 1);
30 static_assert( s == str );
31 static_assert( s.data() == str );
32 constexpr std::basic_string_view ctad(std::begin(str), std::cend(str) - 1);
33 static_assert( ctad == s );
34
35 // The standard does not require this constructor to have a noexcept-specifier.
36 static_assert( noexcept(std::basic_string_view<char>(str, str)) );
37 using I = __gnu_test::contiguous_iterator_wrapper<char>;
38 static_assert( ! noexcept(std::basic_string_view<char>(I{}, I{})) );
39
40 void
41 test01()
42 {
43 #if __STDC_HOSTED__
44 std::vector<char> v{'a', 'b', 'c'};
45 std::basic_string_view<char> s(v.begin(), v.end());
46 VERIFY( s.data() == v.data() );
47 std::basic_string_view ctad(v.begin(), v.end());
48 VERIFY( ctad == s );
49 #endif // HOSTED
50 }
51
52 int
53 main()
54 {
55 test01();
56 }