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 // <list>
11 
12 // void push_back(const value_type& x);
13 
14 #include <list>
15 #include <cassert>
16 
17 #include "../../../min_allocator.h"
18 
19 int main()
20 {
21     {
22     std::list<int> c;
23     for (int i = 0; i < 5; ++i)
24         c.push_back(i);
25     int a[] = {0, 1, 2, 3, 4};
26     assert(c == std::list<int>(a, a+5));
27     }
28 #if __cplusplus >= 201103L
29     {
30     std::list<int, min_allocator<int>> c;
31     for (int i = 0; i < 5; ++i)
32         c.push_back(i);
33     int a[] = {0, 1, 2, 3, 4};
34     assert((c == std::list<int, min_allocator<int>>(a, a+5)));
35     }
36 #endif
37 }
38