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 "../../../stack_allocator.h"
17#include "min_allocator.h"
18
19int 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, stack_allocator<int, 4> > l;
33        assert(l.size() == 0);
34        assert(std::distance(l.begin(), l.end()) == 0);
35    }
36#if __cplusplus >= 201103L
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}
49