[RISCV] Fix mgather -> riscv.masked.strided.load combine not extending indices (...
[llvm-project.git] / libcxx / test / std / containers / associative / map / map.cons / initializer_list.pass.cpp
blob7eebf49c38943ea429a93a378130d6a3d5820eef
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 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: c++03
11 // <map>
13 // class map
15 // map(initializer_list<value_type> il);
17 #include <map>
18 #include <cassert>
20 #include "test_macros.h"
21 #include "min_allocator.h"
23 int main(int, char**)
26 typedef std::pair<const int, double> V;
27 std::map<int, double> m =
29 {1, 1},
30 {1, 1.5},
31 {1, 2},
32 {2, 1},
33 {2, 1.5},
34 {2, 2},
35 {3, 1},
36 {3, 1.5},
37 {3, 2}
39 assert(m.size() == 3);
40 assert(std::distance(m.begin(), m.end()) == 3);
41 assert(*m.begin() == V(1, 1));
42 assert(*std::next(m.begin()) == V(2, 1));
43 assert(*std::next(m.begin(), 2) == V(3, 1));
46 typedef std::pair<const int, double> V;
47 std::map<int, double, std::less<int>, min_allocator<V>> m =
49 {1, 1},
50 {1, 1.5},
51 {1, 2},
52 {2, 1},
53 {2, 1.5},
54 {2, 2},
55 {3, 1},
56 {3, 1.5},
57 {3, 2}
59 assert(m.size() == 3);
60 assert(std::distance(m.begin(), m.end()) == 3);
61 assert(*m.begin() == V(1, 1));
62 assert(*std::next(m.begin()) == V(2, 1));
63 assert(*std::next(m.begin(), 2) == V(3, 1));
66 return 0;