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 // <vector>
11 
12 // vector(vector&& c);
13 
14 #include <vector>
15 #include <cassert>
16 #include "../../test_allocator.h"
17 #include "../../min_allocator.h"
18 
19 int main()
20 {
21 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
22     {
23         std::vector<bool, test_allocator<bool> > l(test_allocator<bool>(5));
24         std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5));
25         for (int i = 1; i <= 3; ++i)
26         {
27             l.push_back(i);
28             lo.push_back(i);
29         }
30         std::vector<bool, test_allocator<bool> > l2 = std::move(l);
31         assert(l2 == lo);
32         assert(l.empty());
33         assert(l2.get_allocator() == lo.get_allocator());
34     }
35     {
36         std::vector<bool, other_allocator<bool> > l(other_allocator<bool>(5));
37         std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5));
38         for (int i = 1; i <= 3; ++i)
39         {
40             l.push_back(i);
41             lo.push_back(i);
42         }
43         std::vector<bool, other_allocator<bool> > l2 = std::move(l);
44         assert(l2 == lo);
45         assert(l.empty());
46         assert(l2.get_allocator() == lo.get_allocator());
47     }
48 #if __cplusplus >= 201103L
49     {
50         std::vector<bool, min_allocator<bool> > l(min_allocator<bool>{});
51         std::vector<bool, min_allocator<bool> > lo(min_allocator<bool>{});
52         for (int i = 1; i <= 3; ++i)
53         {
54             l.push_back(i);
55             lo.push_back(i);
56         }
57         std::vector<bool, min_allocator<bool> > l2 = std::move(l);
58         assert(l2 == lo);
59         assert(l.empty());
60         assert(l2.get_allocator() == lo.get_allocator());
61     }
62 #endif
63 #endif  // _LIBCPP_HAS_NO_RVALUE_REFERENCES
64 }
65