blob: a179cfa1c4a130554ac69389b7b0db8ae0bf9bc3 [file] [log] [blame]
Marshall Clow053d81c2016-07-21 05:31:24 +00001//===----------------------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10
11// <string_view>
12
13// constexpr const _CharT* data() const noexcept;
14
15#include <string_view>
16#include <cassert>
17
18#include "test_macros.h"
19
20template <typename CharT>
21void test ( const CharT *s, size_t len ) {
22 std::basic_string_view<CharT> sv ( s, len );
23 assert ( sv.length() == len );
24 assert ( sv.data() == s );
Marshall Clowaafb3152018-01-30 00:47:43 +000025#if TEST_STD_VER > 14
26// make sure we pick up std::data, too!
27 assert ( sv.data() == std::data(sv));
28#endif
Marshall Clow053d81c2016-07-21 05:31:24 +000029 }
30
31int main () {
32 test ( "ABCDE", 5 );
33 test ( "a", 1 );
34
35 test ( L"ABCDE", 5 );
36 test ( L"a", 1 );
37
38#if TEST_STD_VER >= 11
39 test ( u"ABCDE", 5 );
40 test ( u"a", 1 );
41
42 test ( U"ABCDE", 5 );
43 test ( U"a", 1 );
44#endif
45
Stephan T. Lavavej0f901c72016-11-04 20:26:59 +000046#if TEST_STD_VER > 11
Marshall Clow053d81c2016-07-21 05:31:24 +000047 {
48 constexpr const char *s = "ABC";
49 constexpr std::basic_string_view<char> sv( s, 2 );
50 static_assert( sv.length() == 2, "" );
51 static_assert( sv.data() == s, "" );
52 }
53#endif
54}