1//===----------------------------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9// UNSUPPORTED: c++03
10
11// <set>
12
13// class set
14
15// set(initializer_list<value_type> il, const key_compare& comp, const allocator_type& a);
16// set(initializer_list<value_type> il, const allocator_type& a);
17
18#include <set>
19#include <cassert>
20#include "test_macros.h"
21#include "../../../test_compare.h"
22#include "test_allocator.h"
23
24int main(int, char**)
25{
26 {
27 typedef test_less<int> Cmp;
28 typedef test_allocator<int> A;
29 typedef std::set<int, Cmp, A> C;
30 typedef C::value_type V;
31 C m({1, 2, 3, 4, 5, 6}, Cmp(10), A(4));
32 assert(m.size() == 6);
33 assert(std::distance(m.begin(), m.end()) == 6);
34 C::const_iterator i = m.cbegin();
35 assert(*i == V(1));
36 assert(*++i == V(2));
37 assert(*++i == V(3));
38 assert(*++i == V(4));
39 assert(*++i == V(5));
40 assert(*++i == V(6));
41 assert(m.key_comp() == Cmp(10));
42 assert(m.get_allocator() == A(4));
43 }
44 {
45 typedef test_less<int> Cmp;
46 typedef test_allocator<int> A;
47 typedef std::set<int, Cmp, A> C;
48 typedef C::value_type V;
49 C m({1, 2, 3, 4, 5, 6}, A(4));
50 assert(m.size() == 6);
51 assert(std::distance(m.begin(), m.end()) == 6);
52 C::const_iterator i = m.cbegin();
53 assert(*i == V(1));
54 assert(*++i == V(2));
55 assert(*++i == V(3));
56 assert(*++i == V(4));
57 assert(*++i == V(5));
58 assert(*++i == V(6));
59 assert(m.get_allocator() == A(4));
60 }
61
62 return 0;
63}
64

source code of libcxx/test/std/containers/associative/set/set.cons/initializer_list_compare_alloc.pass.cpp