//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template // typename conditional // < // !has_nothrow_move_constructor::value && has_copy_constructor::value, // const T&, // T&& // >::type // move_if_noexcept(T& x); #include class A { A(const A&); A& operator=(const A&); public: A() {} #ifdef _LIBCPP_MOVE A(A&&) {} #endif }; int main() { int i = 0; const int ci = 0; A a; const A ca; #ifdef _LIBCPP_MOVE static_assert((std::is_same::value), ""); static_assert((std::is_same::value), ""); static_assert((std::is_same::value), ""); static_assert((std::is_same::value), ""); #else static_assert((std::is_same::value), ""); static_assert((std::is_same::value), ""); static_assert((std::is_same::value), ""); static_assert((std::is_same::value), ""); #endif }