2010-08-22 02:59:46 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
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-08-22 02:59:46 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// type_traits
|
|
|
|
|
|
|
|
// is_trivially_copyable
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
struct A
|
|
|
|
{
|
|
|
|
int i_;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct B
|
|
|
|
{
|
|
|
|
int i_;
|
|
|
|
~B() {assert(i_ == 0);}
|
|
|
|
};
|
|
|
|
|
2011-05-13 16:08:16 +02:00
|
|
|
class C
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
C();
|
|
|
|
};
|
|
|
|
|
2010-08-22 02:59:46 +02:00
|
|
|
int main()
|
|
|
|
{
|
|
|
|
static_assert( std::is_trivially_copyable<int>::value, "");
|
|
|
|
static_assert( std::is_trivially_copyable<const int>::value, "");
|
|
|
|
static_assert(!std::is_trivially_copyable<int&>::value, "");
|
|
|
|
static_assert( std::is_trivially_copyable<A>::value, "");
|
|
|
|
static_assert( std::is_trivially_copyable<const A>::value, "");
|
|
|
|
static_assert(!std::is_trivially_copyable<const A&>::value, "");
|
|
|
|
static_assert(!std::is_trivially_copyable<B>::value, "");
|
2011-05-13 16:08:16 +02:00
|
|
|
static_assert( std::is_trivially_copyable<C>::value, "");
|
2010-08-22 02:59:46 +02:00
|
|
|
}
|