1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
//===----------------------------------------------------------------------===//
//
// 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>
// set& operator=(set&& c)
// noexcept(
// allocator_type::propagate_on_container_move_assignment::value &&
// is_nothrow_move_assignable<allocator_type>::value &&
// is_nothrow_move_assignable<key_compare>::value);
// This tests a conforming extension
// UNSUPPORTED: c++03
#include <set>
#include "test_macros.h"
#include "MoveOnly.h"
#include "test_allocator.h"
template <class T>
struct some_comp {
using value_type = T;
some_comp& operator=(const some_comp&);
bool operator()(const T&, const T&) const { return false; }
};
template <class T>
struct always_equal_alloc {
using value_type = T;
always_equal_alloc(const always_equal_alloc&);
void allocate(std::size_t);
};
template <class T>
struct not_always_equal_alloc {
int i;
using value_type = T;
not_always_equal_alloc(const not_always_equal_alloc&);
void allocate(std::size_t);
};
template <template <class> class Alloc>
using unordered_map_alloc = std::set<MoveOnly, std::less<MoveOnly>, Alloc<MoveOnly>>;
static_assert(std::is_nothrow_move_assignable<unordered_map_alloc<std::allocator>>::value, "");
static_assert(!std::is_nothrow_move_assignable<unordered_map_alloc<test_allocator>>::value, "");
#if TEST_STD_VER >= 17
static_assert(std::is_nothrow_move_assignable<unordered_map_alloc<always_equal_alloc>>::value, "");
#endif
static_assert(!std::is_nothrow_move_assignable<unordered_map_alloc<not_always_equal_alloc>>::value, "");
#if defined(_LIBCPP_VERSION)
static_assert(std::is_nothrow_move_assignable<unordered_map_alloc<other_allocator>>::value, "");
#endif // _LIBCPP_VERSION
static_assert(!std::is_nothrow_move_assignable<std::set<int, some_comp<int>>>::value, "");
|