]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/std/containers/sequences/list/list.cons/default_stack_alloc.pass.cpp
Vendor import of libc++ trunk r290819:
[FreeBSD/FreeBSD.git] / test / std / containers / sequences / list / list.cons / default_stack_alloc.pass.cpp
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 // explicit list(const Alloc& = Alloc());
13
14 #include <list>
15 #include <cassert>
16 #include "test_allocator.h"
17 #include "min_allocator.h"
18
19 int main()
20 {
21     {
22         std::list<int> l;
23         assert(l.size() == 0);
24         assert(std::distance(l.begin(), l.end()) == 0);
25     }
26     {
27         std::list<int> l((std::allocator<int>()));
28         assert(l.size() == 0);
29         assert(std::distance(l.begin(), l.end()) == 0);
30     }
31     {
32         std::list<int, limited_allocator<int, 4> > l;
33         assert(l.size() == 0);
34         assert(std::distance(l.begin(), l.end()) == 0);
35     }
36 #if TEST_STD_VER >= 11
37     {
38         std::list<int, min_allocator<int>> l;
39         assert(l.size() == 0);
40         assert(std::distance(l.begin(), l.end()) == 0);
41     }
42     {
43         std::list<int, min_allocator<int>> l((min_allocator<int>()));
44         assert(l.size() == 0);
45         assert(std::distance(l.begin(), l.end()) == 0);
46     }
47 #endif
48 }