diff options
Diffstat (limited to 'libcxx/test/containers/associative/map/map.cons/move_assign_noexcept.pass.cpp')
| -rw-r--r-- | libcxx/test/containers/associative/map/map.cons/move_assign_noexcept.pass.cpp | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/libcxx/test/containers/associative/map/map.cons/move_assign_noexcept.pass.cpp b/libcxx/test/containers/associative/map/map.cons/move_assign_noexcept.pass.cpp deleted file mode 100644 index d12f9a9784f..00000000000 --- a/libcxx/test/containers/associative/map/map.cons/move_assign_noexcept.pass.cpp +++ /dev/null @@ -1,53 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is dual licensed under the MIT and the University of Illinois Open -// Source Licenses. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -// <map> - -// map& operator=(map&& 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 - -#include <map> -#include <cassert> - -#include "../../../MoveOnly.h" -#include "test_allocator.h" - -template <class T> -struct some_comp -{ - typedef T value_type; - some_comp& operator=(const some_comp&); -}; - -int main() -{ -#if __has_feature(cxx_noexcept) - { - typedef std::map<MoveOnly, MoveOnly> C; - static_assert(std::is_nothrow_move_assignable<C>::value, ""); - } - { - typedef std::map<MoveOnly, MoveOnly, std::less<MoveOnly>, test_allocator<MoveOnly>> C; - static_assert(!std::is_nothrow_move_assignable<C>::value, ""); - } - { - typedef std::map<MoveOnly, MoveOnly, std::less<MoveOnly>, other_allocator<MoveOnly>> C; - static_assert(std::is_nothrow_move_assignable<C>::value, ""); - } - { - typedef std::map<MoveOnly, MoveOnly, some_comp<MoveOnly>> C; - static_assert(!std::is_nothrow_move_assignable<C>::value, ""); - } -#endif -} |

