1 //===----------------------------------------------------------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is dual licensed under the MIT and the University of Illinois Open 6 // Source Licenses. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 // <string> 11 12 // basic_string(const basic_string<charT,traits,Allocator>& str); 13 14 #include <string> 15 #include <cassert> 16 17 #include "../test_allocator.h" 18 19 template <class S> 20 void test(S s1)21test(S s1) 22 { 23 S s2 = s1; 24 assert(s2.__invariants()); 25 assert(s2 == s1); 26 assert(s2.capacity() >= s2.size()); 27 assert(s2.get_allocator() == s1.get_allocator()); 28 } 29 main()30int main() 31 { 32 typedef test_allocator<char> A; 33 typedef std::basic_string<char, std::char_traits<char>, A> S; 34 test(S(A(3))); 35 test(S("1", A(5))); 36 test(S("1234567890123456789012345678901234567890123456789012345678901234567890", A(7))); 37 } 38