//===----------------------------------------------------------------------===// // // ΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚThe LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // type_traits // array #include template void test_array_imp() { static_assert(!std::is_reference::value, ""); static_assert(!std::is_arithmetic::value, ""); static_assert(!std::is_fundamental::value, ""); static_assert( std::is_object::value, ""); static_assert(!std::is_scalar::value, ""); static_assert( std::is_compound::value, ""); static_assert(!std::is_member_pointer::value, ""); } template void test_array() { test_array_imp(); test_array_imp(); test_array_imp(); test_array_imp(); } typedef char array[3]; typedef const char const_array[3]; typedef char incomplete_array[]; int main() { test_array(); test_array(); test_array(); }