//===----------------------------------------------------------------------===// // // 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_destructible #include template void test_is_destructible() { static_assert( std::is_destructible::value == Result, ""); static_assert( std::is_destructible::value == Result, ""); static_assert( std::is_destructible::value == Result, ""); static_assert( std::is_destructible::value == Result, ""); } class Empty { }; class NotEmpty { virtual ~NotEmpty(); }; union Union {}; struct bit_zero { int : 0; }; class Abstract { virtual ~Abstract() = 0; }; struct A { ~A(); }; int main() { test_is_destructible(); test_is_destructible(); test_is_destructible(); test_is_destructible(); test_is_destructible(); test_is_destructible(); test_is_destructible(); test_is_destructible(); test_is_destructible(); test_is_destructible(); test_is_destructible(); test_is_destructible(); test_is_destructible(); }