//===----------------------------------------------------------------------===// // // 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 // //===----------------------------------------------------------------------===// // // template // basic_string_view(const basic_string<_CharT, _Traits, Allocator>& _str) noexcept #include #include #include struct dummy_char_traits : public std::char_traits {}; int main(int, char**) { using string_view = std::basic_string_view; using string = std:: basic_string ; { string s{"QBCDE"}; string_view sv1 ( s ); assert ( sv1.size() == s.size()); assert ( sv1.data() == s.data()); } return 0; }