blob: 73b19f35e204881a6001d3a5c7feb45a6b53cde7 [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
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++03
// <unordered_map>
// template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
// class Alloc = allocator<pair<const Key, T>>>
// class unordered_multimap
// unordered_multimap(unordered_multimap&&)
// noexcept(
// is_nothrow_move_constructible<hasher>::value &&
// is_nothrow_move_constructible<key_equal>::value &&
// is_nothrow_move_constructible<allocator_type>::value);
// Validate whether the operation properly guards against ADL-hijacking operator&
#include <unordered_map>
#include "test_macros.h"
#include "operator_hijacker.h"
void test() {
std::unordered_multimap<operator_hijacker, operator_hijacker> mo;
std::unordered_multimap<operator_hijacker, operator_hijacker> m(std::move(mo));
}