Add test for type properties of std::reference_wrapper

llvm-svn: 221224
This commit is contained in:
Eric Fiselier 2014-11-04 01:54:44 +00:00
parent 2e25042a93
commit 49c541a754
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
// <functional>
// reference_wrapper
// Test that reference wrapper meets the requirements of TriviallyCopyable,
// CopyConstructible and CopyAssignable.
#include <functional>
#include <type_traits>
int main()
{
typedef std::reference_wrapper<int> T;
static_assert(std::is_copy_constructible<T>::value, "");
static_assert(std::is_copy_assignable<T>::value, "");
// Extension up for standardization: See N4151.
static_assert(std::is_trivially_copyable<T>::value, "");
}