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 // <vector>
11 
12 // vector(size_type n, const value_type& x, const allocator_type& a);
13 
14 #include <vector>
15 #include <cassert>
16 #include "../../../min_allocator.h"
17 
18 template <class C>
19 void
20 test(typename C::size_type n, const typename C::value_type& x,
21      const typename C::allocator_type& a)
22 {
23     C c(n, x, a);
24     assert(c.__invariants());
25     assert(a == c.get_allocator());
26     assert(c.size() == n);
27     for (typename C::const_iterator i = c.cbegin(), e = c.cend(); i != e; ++i)
28         assert(*i == x);
29 }
30 
31 int main()
32 {
33     test<std::vector<int> >(50, 3, std::allocator<int>());
34 #if __cplusplus >= 201103L
35     test<std::vector<int, min_allocator<int>> >(50, 3, min_allocator<int>());
36 #endif
37 }
38