[X86] Better handling of impossibly large stack frames (#124217)
[llvm-project.git] / libcxx / test / std / containers / associative / multiset / multiset.cons / default.pass.cpp
blob793c0f5c7ef9f4fd468ab70a8e57eda73358dcfb
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 // <set>
11 // class multiset
13 // multiset();
15 #include <set>
16 #include <cassert>
18 #include "test_macros.h"
19 #include "min_allocator.h"
21 int main(int, char**)
24 std::multiset<int> m;
25 assert(m.empty());
26 assert(m.begin() == m.end());
28 #if TEST_STD_VER >= 11
30 std::multiset<int, std::less<int>, min_allocator<int>> m;
31 assert(m.empty());
32 assert(m.begin() == m.end());
35 typedef explicit_allocator<int> A;
37 std::multiset<int, std::less<int>, A> m;
38 assert(m.empty());
39 assert(m.begin() == m.end());
42 A a;
43 std::multiset<int, std::less<int>, A> m(a);
44 assert(m.empty());
45 assert(m.begin() == m.end());
49 std::multiset<int> m = {};
50 assert(m.empty());
51 assert(m.begin() == m.end());
53 #endif
55 return 0;