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 // <forward_list>
11 
12 // forward_list(initializer_list<value_type> il, const allocator_type& a);
13 
14 #include <forward_list>
15 #include <cassert>
16 
17 #include "test_allocator.h"
18 #include "min_allocator.h"
19 
main()20 int main()
21 {
22 #ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
23     {
24         typedef int T;
25         typedef test_allocator<T> A;
26         typedef std::forward_list<T, A> C;
27         C c({0, 1, 2, 3, 4, 5, 6, 7, 8, 9}, A(14));
28         unsigned n = 0;
29         for (C::const_iterator i = c.begin(), e = c.end(); i != e; ++i, ++n)
30             assert(*i == n);
31         assert(n == 10);
32         assert(c.get_allocator() == A(14));
33     }
34 #if __cplusplus >= 201103L
35     {
36         typedef int T;
37         typedef min_allocator<T> A;
38         typedef std::forward_list<T, A> C;
39         C c({0, 1, 2, 3, 4, 5, 6, 7, 8, 9}, A());
40         unsigned n = 0;
41         for (C::const_iterator i = c.begin(), e = c.end(); i != e; ++i, ++n)
42             assert(*i == n);
43         assert(n == 10);
44         assert(c.get_allocator() == A());
45     }
46 #endif
47 #endif  // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
48 }
49