//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // type_traits // has_copy_constructor #include template void test_has_copy_constructor() { static_assert(std::has_copy_constructor::value == Result, ""); } class Empty { }; class NotEmpty { public: virtual ~NotEmpty(); }; union Union {}; struct bit_zero { int : 0; }; class Abstract { public: virtual ~Abstract() = 0; }; struct A { A(const A&); }; int main() { test_has_copy_constructor(); test_has_copy_constructor(); test_has_copy_constructor(); test_has_copy_constructor(); test_has_copy_constructor(); test_has_copy_constructor(); test_has_copy_constructor(); test_has_copy_constructor(); test_has_copy_constructor(); test_has_copy_constructor(); test_has_copy_constructor(); test_has_copy_constructor(); test_has_copy_constructor(); test_has_copy_constructor(); }