blob: a7f3d84e39bf2a9c6fb12e4000612fb8fe11c0e9 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <unordered_set>
// template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
// class Alloc = allocator<Value>>
// class unordered_multiset
// void swap(unordered_multiset& x, unordered_multiset& y);
// UNSUPPORTED: libcxx-no-debug-mode
// ADDITIONAL_COMPILE_FLAGS: -D_LIBCPP_DEBUG=1
#include <unordered_set>
#include "test_macros.h"
#include "debug_macros.h"
int main(int, char**) {
int a1[] = {1, 3, 7, 9, 10};
int a2[] = {0, 2, 4, 5, 6, 8, 11};
std::unordered_multiset<int> c1(a1, a1+sizeof(a1)/sizeof(a1[0]));
std::unordered_multiset<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
std::unordered_multiset<int>::iterator i1 = c1.begin();
std::unordered_multiset<int>::iterator i2 = c2.begin();
swap(c1, c2);
c1.erase(i2);
TEST_LIBCPP_ASSERT_FAILURE(
c1.erase(i1), "unordered container erase(iterator) called with an iterator not referring to this container");
return 0;
}