blob: 1c582bc516373d6f0fb219b5d6ad3d742a81c1ab [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
10// <string>
11
12// basic_string<charT,traits,Allocator>& operator=(charT c);
13
14#include <string>
15#include <cassert>
16
Marshall Clow061d0cc2013-11-26 20:58:02 +000017#include "min_allocator.h"
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000018
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000019template <class S>
20void
21test(S s1, typename S::value_type s2)
22{
23 typedef typename S::traits_type T;
24 s1 = s2;
Dan Albert1d4a1ed2016-05-25 22:36:09 -070025 assert(s1.__invariants());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000026 assert(s1.size() == 1);
27 assert(T::eq(s1[0], s2));
28 assert(s1.capacity() >= s1.size());
29}
30
31int main()
32{
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000033 {
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000034 typedef std::string S;
35 test(S(), 'a');
36 test(S("1"), 'a');
37 test(S("123456789"), 'a');
38 test(S("1234567890123456789012345678901234567890123456789012345678901234567890"), 'a');
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000039 }
Dan Albert1d4a1ed2016-05-25 22:36:09 -070040#if __cplusplus >= 201103L
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000041 {
42 typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
43 test(S(), 'a');
44 test(S("1"), 'a');
45 test(S("123456789"), 'a');
46 test(S("1234567890123456789012345678901234567890123456789012345678901234567890"), 'a');
47 }
48#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000049}