1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8
9 // UNSUPPORTED: c++03
10
11 // <list>
12
13 // list(initializer_list<value_type> il, const Allocator& a = allocator_type());
14
15 #include <list>
16 #include <cassert>
17
18 #include "test_macros.h"
19 #include "test_allocator.h"
20 #include "min_allocator.h"
21
main(int,char **)22 int main(int, char**)
23 {
24 {
25 std::list<int, test_allocator<int>> d({3, 4, 5, 6}, test_allocator<int>(3));
26 assert(d.get_allocator() == test_allocator<int>(3));
27 assert(d.size() == 4);
28 std::list<int, test_allocator<int>>::iterator i = d.begin();
29 assert(*i++ == 3);
30 assert(*i++ == 4);
31 assert(*i++ == 5);
32 assert(*i++ == 6);
33 }
34 {
35 std::list<int, min_allocator<int>> d({3, 4, 5, 6}, min_allocator<int>());
36 assert(d.get_allocator() == min_allocator<int>());
37 assert(d.size() == 4);
38 std::list<int, min_allocator<int>>::iterator i = d.begin();
39 assert(*i++ == 3);
40 assert(*i++ == 4);
41 assert(*i++ == 5);
42 assert(*i++ == 6);
43 }
44
45 return 0;
46 }
47