//===----------------------------------------------------------------------===// // // 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; // 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), ""); } }