//===----------------------------------------------------------------------===// // // 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_base_of #include template void test_is_base_of() { static_assert((std::is_base_of::value), ""); static_assert((std::is_base_of::value), ""); static_assert((std::is_base_of::value), ""); static_assert((std::is_base_of::value), ""); } template void test_is_not_base_of() { static_assert((!std::is_base_of::value), ""); } struct B {}; struct B1 : B {}; struct B2 : B {}; struct D : private B1, private B2 {}; int main() { test_is_base_of(); test_is_base_of(); test_is_base_of(); test_is_base_of(); test_is_base_of(); test_is_base_of(); test_is_not_base_of(); test_is_not_base_of(); test_is_not_base_of(); test_is_not_base_of(); }