1 // { dg-options "-std=gnu++1y" }
3 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
20 // basic_string_view constructors.
22 #include <experimental/string_view>
25 #include <testsuite_hooks.h>
30 bool test
[[gnu::unused
]] = true;
31 typedef std::experimental::wstring_view::size_type csize_type
;
33 // basic_string_view()
34 const std::experimental::wstring_view str00
{};
35 VERIFY( str00
.length() == 0 );
36 VERIFY( str00
.data() == nullptr );
38 // basic_string_view(const char*)
39 const wchar_t str_lit01
[] = L
"rodeo beach, marin";
40 const std::experimental::wstring_view str01
{str_lit01
};
41 VERIFY( str01
.length() == 18 );
42 VERIFY( str01
.data() == str_lit01
);
43 const std::experimental::wstring_view str02
{L
"baker beach, san francisco"};
44 VERIFY( str02
.length() == 26 );
46 // basic_string_view(const string_view&)
47 std::experimental::wstring_view str04
{str01
};
48 VERIFY( str04
.length() == str01
.length() );
49 VERIFY( str04
.data() == str01
.data() );
51 // basic_string_view(const char* s)
52 csize_type len_lit01
= wcslen(str_lit01
);
53 std::experimental::wstring_view str05
{str_lit01
, len_lit01
};
54 VERIFY( str05
.length() == len_lit01
);
55 VERIFY( str05
.data() == str_lit01
);
57 // basic_string_view(basic_string& s)
58 std::wstring
istr07(10, L
'z');
59 std::experimental::wstring_view str07
{istr07
};
60 VERIFY( str07
.length() == 10 );