1 //===----------------------------------------------------------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is dual licensed under the MIT and the University of Illinois Open 6 // Source Licenses. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 // <set> 11 12 // set& operator=(set&& c) 13 // noexcept( 14 // allocator_type::propagate_on_container_move_assignment::value && 15 // is_nothrow_move_assignable<allocator_type>::value && 16 // is_nothrow_move_assignable<key_compare>::value); 17 18 // This tests a conforming extension 19 20 // UNSUPPORTED: c++98, c++03 21 22 #include <set> 23 #include <cassert> 24 25 #include "MoveOnly.h" 26 #include "test_allocator.h" 27 28 template <class T> 29 struct some_comp 30 { 31 typedef T value_type; 32 some_comp& operator=(const some_comp&); 33 bool operator()(const T&, const T&) const { return false; } 34 }; 35 36 int main() 37 { 38 { 39 typedef std::set<MoveOnly> C; 40 static_assert(std::is_nothrow_move_assignable<C>::value, ""); 41 } 42 { 43 typedef std::set<MoveOnly, std::less<MoveOnly>, test_allocator<MoveOnly>> C; 44 static_assert(!std::is_nothrow_move_assignable<C>::value, ""); 45 } 46 { 47 typedef std::set<MoveOnly, std::less<MoveOnly>, other_allocator<MoveOnly>> C; 48 static_assert(std::is_nothrow_move_assignable<C>::value, ""); 49 } 50 { 51 typedef std::set<MoveOnly, some_comp<MoveOnly>> C; 52 static_assert(!std::is_nothrow_move_assignable<C>::value, ""); 53 } 54 } 55