2010-05-11 21:42:16 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-05-11 23:36:01 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
2010-05-11 21:42:16 +02:00
|
|
|
//
|
2010-11-16 23:09:02 +01:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-05-11 21:42:16 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <utility>
|
|
|
|
|
|
|
|
// template <class T>
|
|
|
|
// typename conditional
|
|
|
|
// <
|
2011-05-17 22:10:42 +02:00
|
|
|
// !is_nothrow_move_constructible<T>::value && is_copy_constructible<T>::value,
|
2010-05-11 21:42:16 +02:00
|
|
|
// const T&,
|
|
|
|
// T&&
|
|
|
|
// >::type
|
|
|
|
// move_if_noexcept(T& x);
|
|
|
|
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
class A
|
|
|
|
{
|
|
|
|
A(const A&);
|
|
|
|
A& operator=(const A&);
|
|
|
|
public:
|
|
|
|
|
|
|
|
A() {}
|
2010-09-05 01:28:19 +02:00
|
|
|
#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
|
2010-05-11 21:42:16 +02:00
|
|
|
A(A&&) {}
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2011-05-17 22:10:42 +02:00
|
|
|
struct legacy
|
|
|
|
{
|
|
|
|
legacy() {}
|
|
|
|
legacy(const legacy&);
|
|
|
|
};
|
|
|
|
|
2010-05-11 21:42:16 +02:00
|
|
|
int main()
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
const int ci = 0;
|
|
|
|
|
2011-05-17 22:10:42 +02:00
|
|
|
legacy l;
|
2010-05-11 21:42:16 +02:00
|
|
|
A a;
|
|
|
|
const A ca;
|
|
|
|
|
2010-09-05 01:28:19 +02:00
|
|
|
#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
|
2010-05-11 21:42:16 +02:00
|
|
|
static_assert((std::is_same<decltype(std::move_if_noexcept(i)), int&&>::value), "");
|
|
|
|
static_assert((std::is_same<decltype(std::move_if_noexcept(ci)), const int&&>::value), "");
|
2011-05-17 22:10:42 +02:00
|
|
|
static_assert((std::is_same<decltype(std::move_if_noexcept(a)), A&&>::value), "");
|
|
|
|
static_assert((std::is_same<decltype(std::move_if_noexcept(ca)), const A&&>::value), "");
|
2010-09-05 01:28:19 +02:00
|
|
|
#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
|
2010-05-11 21:42:16 +02:00
|
|
|
static_assert((std::is_same<decltype(std::move_if_noexcept(i)), const int>::value), "");
|
|
|
|
static_assert((std::is_same<decltype(std::move_if_noexcept(ci)), const int>::value), "");
|
|
|
|
static_assert((std::is_same<decltype(std::move_if_noexcept(a)), const A>::value), "");
|
|
|
|
static_assert((std::is_same<decltype(std::move_if_noexcept(ca)), const A>::value), "");
|
2010-09-05 01:28:19 +02:00
|
|
|
#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
|
2011-05-17 22:10:42 +02:00
|
|
|
static_assert((std::is_same<decltype(std::move_if_noexcept(l)), const legacy&>::value), "");
|
2010-05-11 21:42:16 +02:00
|
|
|
|
|
|
|
}
|