blob: c91493ff0d62d85766d7cf73fa68135bf4b101d9 [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
//
//===----------------------------------------------------------------------===//
// <set>
// class multiset
// multiset& operator=(const multiset& s);
// Validate whether the container can be copy-assigned with an ADL-hijacking operator&
#include <set>
#include "test_macros.h"
#include "operator_hijacker.h"
void test() {
std::multiset<operator_hijacker> so;
std::multiset<operator_hijacker> s;
s = so;
}