//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. 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)), ""); } }