blob: 482d220013b0c6aa7965348c14faefd5923db9c3 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <string_view>
// template<class Allocator>
// basic_string_view(const basic_string<_CharT, _Traits, Allocator>& _str) noexcept
#include <string_view>
#include <string>
#include <cassert>
struct dummy_char_traits : public std::char_traits<char> {};
int main(int, char**) {
using string_view = std::basic_string_view<char, dummy_char_traits>;
using string = std:: basic_string <char>;
{
string s{"QBCDE"};
string_view sv1 ( s );
assert ( sv1.size() == s.size());
assert ( sv1.data() == s.data());
}
return 0;
}