blob: 00763cd05ed44eb22d9e97d1c363c506d4d282a8 [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& str, const Allocator& alloc);
13
14#include <string>
15#include <cassert>
16
17#include "../test_allocator.h"
18
19template <class S>
20void
21test(S s1, const typename S::allocator_type& a)
22{
23 S s2(s1, a);
24 assert(s2.__invariants());
25 assert(s2 == s1);
26 assert(s2.capacity() >= s2.size());
27 assert(s2.get_allocator() == a);
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}