//===----------------------------------------------------------------------===// // // 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(stack& c) // noexcept(__is_nothrow_swappable::value); // This tests a conforming extension // UNSUPPORTED: c++98, c++03 #include #include #include #include "MoveOnly.h" int main() { { typedef std::stack C; static_assert(noexcept(swap(std::declval(), std::declval())), ""); } }