//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // tuple_size >::value #include int main() { { typedef double T; typedef std::array C; static_assert((std::tuple_size::value == 3), ""); } { typedef double T; typedef std::array C; static_assert((std::tuple_size::value == 0), ""); } }