1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 // basic_string<charT,traits,Allocator>& operator=(charT c); // constexpr since C++20
16 #include "test_macros.h"
17 #include "min_allocator.h"
20 TEST_CONSTEXPR_CXX20
void test(S s1
, typename
S::value_type s2
) {
21 typedef typename
S::traits_type T
;
23 LIBCPP_ASSERT(s1
.__invariants());
24 assert(s1
.size() == 1);
25 assert(T::eq(s1
[0], s2
));
26 assert(s1
.capacity() >= s1
.size());
30 TEST_CONSTEXPR_CXX20
void test_string() {
33 test(S("123456789"), 'a');
34 test(S("1234567890123456789012345678901234567890123456789012345678901234567890"), 'a');
37 TEST_CONSTEXPR_CXX20
bool test() {
38 test_string
<std::string
>();
39 #if TEST_STD_VER >= 11
40 test_string
<std::basic_string
<char, std::char_traits
<char>, min_allocator
<char>>>();
46 int main(int, char**) {
49 static_assert(test());