1 //===----------------------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 // UNSUPPORTED: c++98, c++03
11 
12 // type_traits
13 
14 // rvalue_ref
15 
16 #include <type_traits>
17 
18 template <class T>
test_rvalue_ref()19 void test_rvalue_ref()
20 {
21     static_assert( std::is_reference<T>::value, "");
22     static_assert(!std::is_arithmetic<T>::value, "");
23     static_assert(!std::is_fundamental<T>::value, "");
24     static_assert(!std::is_object<T>::value, "");
25     static_assert(!std::is_scalar<T>::value, "");
26     static_assert( std::is_compound<T>::value, "");
27     static_assert(!std::is_member_pointer<T>::value, "");
28 }
29 
main()30 int main()
31 {
32     test_rvalue_ref<int&&>();
33     test_rvalue_ref<const int&&>();
34 }
35