//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // void swap(unordered_map& c) // noexcept(!allocator_type::propagate_on_container_swap::value || // __is_nothrow_swappable::value); // This tests a conforming extension #include #include #include "../../../MoveOnly.h" #include "test_allocator.h" template struct some_comp { typedef T value_type; some_comp() {} some_comp(const some_comp&) {} }; template struct some_hash { typedef T value_type; some_hash() {} some_hash(const some_hash&); }; int main() { #if __has_feature(cxx_noexcept) { typedef std::unordered_map C; C c1, c2; static_assert(noexcept(swap(c1, c2)), ""); } { typedef std::unordered_map, std::equal_to, test_allocator>> C; C c1, c2; static_assert(noexcept(swap(c1, c2)), ""); } { typedef std::unordered_map, std::equal_to, other_allocator>> C; C c1, c2; static_assert(noexcept(swap(c1, c2)), ""); } { typedef std::unordered_map> C; C c1, c2; static_assert(!noexcept(swap(c1, c2)), ""); } { typedef std::unordered_map, some_comp> C; C c1, c2; static_assert(!noexcept(swap(c1, c2)), ""); } #endif }