| //===----------------------------------------------------------------------===// |
| // |
| // ÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊThe LLVM Compiler Infrastructure |
| // |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| // |
| //===----------------------------------------------------------------------===// |
| |
| // <utility> |
| |
| // template <class T> typename add_rvalue_reference<T>::type declval() noexcept; |
| |
| #include <utility> |
| #include <type_traits> |
| |
| class A |
| { |
| A(const A&); |
| A& operator=(const A&); |
| }; |
| |
| int main() |
| { |
| #ifdef _LIBCPP_MOVE |
| static_assert((std::is_same<decltype(std::declval<A>()), A&&>::value), ""); |
| #else |
| static_assert((std::is_same<decltype(std::declval<A>()), A>::value), ""); |
| #endif |
| } |