//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template class tuple; // template // struct uses_allocator, Alloc> : true_type { }; #include #include struct A {}; int main() { { typedef std::tuple<> T; static_assert((std::is_base_of>::value), ""); } { typedef std::tuple T; static_assert((std::is_base_of>::value), ""); } { typedef std::tuple T; static_assert((std::is_base_of>::value), ""); } { typedef std::tuple T; static_assert((std::is_base_of>::value), ""); } }