//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // template class tuple; // This is not a portable test #include struct A {}; struct B {}; int main() { { typedef std::tuple T; static_assert((sizeof(T) == sizeof(int)), ""); } { typedef std::tuple T; static_assert((sizeof(T) == sizeof(int)), ""); } { typedef std::tuple T; static_assert((sizeof(T) == sizeof(int)), ""); } { typedef std::tuple T; static_assert((sizeof(T) == sizeof(int)), ""); } { typedef std::tuple T; static_assert((sizeof(T) == sizeof(int)), ""); } }