blob: 2c68fbd2e4a97ddf4327346e71191e746e087aaf [file] [log] [blame]
Howard Hinnant3e519522010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
3// ÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊThe LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. 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
19template <class S>
20void
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
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}