//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // 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(); }