2010-08-22 02:59:46 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// type_traits
|
|
|
|
|
|
|
|
// has_nothrow_copy_assign
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
2010-09-08 18:39:18 +02:00
|
|
|
template <class T, bool Result>
|
2010-08-22 02:59:46 +02:00
|
|
|
void test_has_nothrow_assign()
|
|
|
|
{
|
2010-09-08 18:39:18 +02:00
|
|
|
static_assert(std::has_nothrow_copy_assign<T>::value == Result, "");
|
2010-08-22 02:59:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
class Empty
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
2010-09-08 18:39:18 +02:00
|
|
|
struct NotEmpty
|
2010-08-22 02:59:46 +02:00
|
|
|
{
|
|
|
|
virtual ~NotEmpty();
|
|
|
|
};
|
|
|
|
|
|
|
|
union Union {};
|
|
|
|
|
|
|
|
struct bit_zero
|
|
|
|
{
|
|
|
|
int : 0;
|
|
|
|
};
|
|
|
|
|
2010-09-08 18:39:18 +02:00
|
|
|
struct Abstract
|
2010-08-22 02:59:46 +02:00
|
|
|
{
|
|
|
|
virtual ~Abstract() = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct A
|
|
|
|
{
|
|
|
|
A& operator=(const A&);
|
|
|
|
};
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2010-09-08 18:39:18 +02:00
|
|
|
test_has_nothrow_assign<void, false>();
|
|
|
|
test_has_nothrow_assign<A, false>();
|
|
|
|
test_has_nothrow_assign<int&, false>();
|
|
|
|
test_has_nothrow_assign<Abstract, false>();
|
|
|
|
test_has_nothrow_assign<char[3], false>();
|
|
|
|
test_has_nothrow_assign<char[], false>();
|
2010-08-22 02:59:46 +02:00
|
|
|
|
2010-09-08 18:39:18 +02:00
|
|
|
test_has_nothrow_assign<Union, true>();
|
|
|
|
test_has_nothrow_assign<Empty, true>();
|
|
|
|
test_has_nothrow_assign<int, true>();
|
|
|
|
test_has_nothrow_assign<double, true>();
|
|
|
|
test_has_nothrow_assign<int*, true>();
|
|
|
|
test_has_nothrow_assign<const int*, true>();
|
|
|
|
test_has_nothrow_assign<NotEmpty, true>();
|
|
|
|
test_has_nothrow_assign<bit_zero, true>();
|
2010-08-22 02:59:46 +02:00
|
|
|
}
|