//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // type_traits // is_trivially_copy_assignable #include template void test_has_trivially_copy_assignable() { static_assert( std::is_trivially_copy_assignable::value, ""); } template void test_has_not_trivially_copy_assignable() { static_assert(!std::is_trivially_copy_assignable::value, ""); } class Empty { }; class NotEmpty { virtual ~NotEmpty(); }; union Union {}; struct bit_zero { int : 0; }; class Abstract { virtual ~Abstract() = 0; }; struct A { A& operator=(const A&); }; int main() { test_has_trivially_copy_assignable(); test_has_trivially_copy_assignable(); test_has_trivially_copy_assignable(); test_has_trivially_copy_assignable(); test_has_trivially_copy_assignable(); test_has_trivially_copy_assignable(); test_has_trivially_copy_assignable(); test_has_trivially_copy_assignable(); test_has_not_trivially_copy_assignable(); test_has_not_trivially_copy_assignable(); test_has_not_trivially_copy_assignable(); test_has_not_trivially_copy_assignable(); test_has_not_trivially_copy_assignable(); }