Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / test / std / containers / associative / multimap / multimap.cons / default.pass.cpp
blob5248874c2e48db59bf7264b0a227eb9257397e58
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 // <map>
11 // class multimap
13 // multimap();
15 #include <map>
16 #include <cassert>
18 #include "test_macros.h"
19 #include "min_allocator.h"
21 int main(int, char**)
24 std::multimap<int, double> m;
25 assert(m.empty());
26 assert(m.begin() == m.end());
28 #if TEST_STD_VER >= 11
30 std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> m;
31 assert(m.empty());
32 assert(m.begin() == m.end());
35 typedef explicit_allocator<std::pair<const int, double>> A;
37 std::multimap<int, double, std::less<int>, A> m;
38 assert(m.empty());
39 assert(m.begin() == m.end());
42 A a;
43 std::multimap<int, double, std::less<int>, A> m(a);
44 assert(m.empty());
45 assert(m.begin() == m.end());
49 std::multimap<int, double> m = {};
50 assert(m.empty());
51 assert(m.begin() == m.end());
53 #endif
55 return 0;