//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // queue(queue&&) // noexcept(is_nothrow_move_constructible::value); // This tests a conforming extension // UNSUPPORTED: c++98, c++03 #include #include #include "test_macros.h" #include "MoveOnly.h" int main() { #if defined(_LIBCPP_VERSION) { typedef std::queue C; static_assert(std::is_nothrow_move_constructible::value, ""); } #endif // _LIBCPP_VERSION }