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 // <set>
11 
12 // class multiset
13 
14 // multiset(initializer_list<value_type> il, const key_compare& comp = key_compare());
15 
16 #include <set>
17 #include <cassert>
18 #include "../../../test_compare.h"
19 
main()20 int main()
21 {
22 #ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
23     typedef test_compare<std::less<int> > Cmp;
24     typedef std::multiset<int, Cmp> C;
25     typedef C::value_type V;
26     C m({1, 2, 3, 4, 5, 6}, Cmp(10));
27     assert(m.size() == 6);
28     assert(distance(m.begin(), m.end()) == 6);
29     C::const_iterator i = m.cbegin();
30     assert(*i == V(1));
31     assert(*++i == V(2));
32     assert(*++i == V(3));
33     assert(*++i == V(4));
34     assert(*++i == V(5));
35     assert(*++i == V(6));
36     assert(m.key_comp() == Cmp(10));
37 #endif  // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
38 }
39