//===----------------------------------------------------------------------===// // // 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_element >::type #include #include template void test() { { typedef T Exp; typedef std::array C; static_assert((std::is_same::type, Exp>::value), ""); static_assert((std::is_same::type, Exp>::value), ""); static_assert((std::is_same::type, Exp>::value), ""); } { typedef T const Exp; typedef std::array const C; static_assert((std::is_same::type, Exp>::value), ""); static_assert((std::is_same::type, Exp>::value), ""); static_assert((std::is_same::type, Exp>::value), ""); } { typedef T volatile Exp; typedef std::array volatile C; static_assert((std::is_same::type, Exp>::value), ""); static_assert((std::is_same::type, Exp>::value), ""); static_assert((std::is_same::type, Exp>::value), ""); } { typedef T const volatile Exp; typedef std::array const volatile C; static_assert((std::is_same::type, Exp>::value), ""); static_assert((std::is_same::type, Exp>::value), ""); static_assert((std::is_same::type, Exp>::value), ""); } } int main() { test(); test(); }