blob: 873e8891094dcf8671e3a3e5a6f1aebb44121a76 [file] [log] [blame]
Howard Hinnant3e519522010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnant5b08a8a2010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnant3e519522010-05-11 19:42:16 +00004//
Howard Hinnant412dbeb2010-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 Hinnant3e519522010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
10// <string>
11
12// basic_string(basic_string<charT,traits,Allocator>&& str);
13
14#include <string>
15#include <cassert>
16
Howard Hinnant7609c9b2010-09-04 23:28:19 +000017#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant3e519522010-05-11 19:42:16 +000018
19#include "../test_allocator.h"
Marshall Clowe34f6f62013-11-26 20:58:02 +000020#include "min_allocator.h"
Howard Hinnant3e519522010-05-11 19:42:16 +000021
22template <class S>
23void
24test(S s0)
25{
26 S s1 = s0;
27 S s2 = std::move(s0);
28 assert(s2.__invariants());
29 assert(s0.__invariants());
30 assert(s2 == s1);
31 assert(s2.capacity() >= s2.size());
32 assert(s2.get_allocator() == s1.get_allocator());
33}
34
Howard Hinnant7609c9b2010-09-04 23:28:19 +000035#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant3e519522010-05-11 19:42:16 +000036
37int main()
38{
Howard Hinnant7609c9b2010-09-04 23:28:19 +000039#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnanteec72182013-06-28 16:59:19 +000040 {
Howard Hinnant3e519522010-05-11 19:42:16 +000041 typedef test_allocator<char> A;
42 typedef std::basic_string<char, std::char_traits<char>, A> S;
43 test(S(A(3)));
44 test(S("1", A(5)));
45 test(S("1234567890123456789012345678901234567890123456789012345678901234567890", A(7)));
Howard Hinnanteec72182013-06-28 16:59:19 +000046 }
47#if __cplusplus >= 201103L
48 {
49 typedef min_allocator<char> A;
50 typedef std::basic_string<char, std::char_traits<char>, A> S;
51 test(S(A{}));
52 test(S("1", A()));
53 test(S("1234567890123456789012345678901234567890123456789012345678901234567890", A()));
54 }
55#endif
Howard Hinnant7609c9b2010-09-04 23:28:19 +000056#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant3e519522010-05-11 19:42:16 +000057}