//===----------------------------------------------------------------------===// // // 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 // //===----------------------------------------------------------------------===// // // UNSUPPORTED: c++03, c++11, c++14 // template::value_type>> // basic_string(InputIterator, InputIterator, Allocator = Allocator()) // -> basic_string::value_type, // char_traits::value_type>, // Allocator>; // constexpr since C++20 // // The deduction guide shall not participate in overload resolution if InputIterator // is a type that does not qualify as an input iterator, or if Allocator is a type // that does not qualify as an allocator. #include #include #include #include #include #include "test_macros.h" #include "test_allocator.h" #include "min_allocator.h" #include "asan_testing.h" class NotAnIterator {}; using NotAnInputIterator = std::back_insert_iterator>; template struct NotAnAllocator { typedef T value_type; }; template struct CanDeduce : std::false_type {}; template struct CanDeduce(), std::declval(), std::declval()})> : std::true_type {}; static_assert(CanDeduce>::value); static_assert(!CanDeduce>::value); static_assert(!CanDeduce>::value); static_assert(!CanDeduce>::value); #ifndef TEST_HAS_NO_WIDE_CHARACTERS static_assert(CanDeduce>::value); static_assert(!CanDeduce>::value); #endif TEST_CONSTEXPR_CXX20 bool test() { { const char* s = "12345678901234"; std::basic_string s1(s, s + 10); // Can't use {} here using S = decltype(s1); // what type did we get? static_assert(std::is_same_v, ""); static_assert(std::is_same_v>, ""); static_assert(std::is_same_v>, ""); assert(s1.size() == 10); assert(s1.compare(0, s1.size(), s, s1.size()) == 0); LIBCPP_ASSERT(is_string_asan_correct(s1)); } { const char* s = "12345678901234"; std::basic_string s1{s, s + 10, std::allocator{}}; using S = decltype(s1); // what type did we get? static_assert(std::is_same_v, ""); static_assert(std::is_same_v>, ""); static_assert(std::is_same_v>, ""); assert(s1.size() == 10); assert(s1.compare(0, s1.size(), s, s1.size()) == 0); LIBCPP_ASSERT(is_string_asan_correct(s1)); } #ifndef TEST_HAS_NO_WIDE_CHARACTERS { const wchar_t* s = L"12345678901234"; std::basic_string s1{s, s + 10, test_allocator{}}; using S = decltype(s1); // what type did we get? static_assert(std::is_same_v, ""); static_assert(std::is_same_v>, ""); static_assert(std::is_same_v>, ""); assert(s1.size() == 10); assert(s1.compare(0, s1.size(), s, s1.size()) == 0); LIBCPP_ASSERT(is_string_asan_correct(s1)); } #endif { const char16_t* s = u"12345678901234"; std::basic_string s1{s, s + 10, min_allocator{}}; using S = decltype(s1); // what type did we get? static_assert(std::is_same_v, ""); static_assert(std::is_same_v>, ""); static_assert(std::is_same_v>, ""); assert(s1.size() == 10); assert(s1.compare(0, s1.size(), s, s1.size()) == 0); LIBCPP_ASSERT(is_string_asan_correct(s1)); } { const char32_t* s = U"12345678901234"; std::basic_string s1{s, s + 10, explicit_allocator{}}; using S = decltype(s1); // what type did we get? static_assert(std::is_same_v, ""); static_assert(std::is_same_v>, ""); static_assert(std::is_same_v>, ""); assert(s1.size() == 10); assert(s1.compare(0, s1.size(), s, s1.size()) == 0); LIBCPP_ASSERT(is_string_asan_correct(s1)); } return true; } int main(int, char**) { test(); #if TEST_STD_VER > 17 static_assert(test()); #endif return 0; }