blob: 7ea728dc683b825b21d613762450295d1ac0cc8e [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// <set>
11
12// class set
13
14// set(initializer_list<value_type> il, const key_compare& comp, const allocator_type& a);
15
16#include <set>
17#include <cassert>
18#include "../../../test_compare.h"
19#include "../../../test_allocator.h"
20
21int main()
22{
Howard Hinnant73d21a42010-09-04 23:28:19 +000023#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000024 typedef test_compare<std::less<int> > Cmp;
25 typedef test_allocator<int> A;
26 typedef std::set<int, Cmp, A> C;
27 typedef C::value_type V;
28 C m({1, 2, 3, 4, 5, 6}, Cmp(10), A(4));
29 assert(m.size() == 6);
30 assert(distance(m.begin(), m.end()) == 6);
31 C::const_iterator i = m.cbegin();
32 assert(*i == V(1));
33 assert(*++i == V(2));
34 assert(*++i == V(3));
35 assert(*++i == V(4));
36 assert(*++i == V(5));
37 assert(*++i == V(6));
38 assert(m.key_comp() == Cmp(10));
39 assert(m.get_allocator() == A(4));
Howard Hinnant73d21a42010-09-04 23:28:19 +000040#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000041}