//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++98, c++03, c++11 // // void swap(any &, any &) noexcept // swap(...) just wraps any::swap(...). That function is tested elsewhere. #include #include using std::experimental::any; using std::experimental::any_cast; int main() { { // test noexcept any a; static_assert(noexcept(swap(a, a)), "swap(any&, any&) must be noexcept"); } { any a1(1); any a2(2); swap(a1, a2); assert(any_cast(a1) == 2); assert(any_cast(a2) == 1); } }