//===----------------------------------------------------------------------===// // // 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 basic_streambuf // { // public: // // types: // typedef charT char_type; // typedef traits traits_type; // typedef typename traits_type::int_type int_type; // typedef typename traits_type::pos_type pos_type; // typedef typename traits_type::off_type off_type; #include #include int main() { static_assert((std::is_same::value), ""); static_assert((std::is_same >::value), ""); static_assert((std::is_same::int_type>::value), ""); static_assert((std::is_same::pos_type>::value), ""); static_assert((std::is_same::off_type>::value), ""); static_assert((std::is_same::value), ""); static_assert((std::is_same >::value), ""); static_assert((std::is_same::int_type>::value), ""); static_assert((std::is_same::pos_type>::value), ""); static_assert((std::is_same::off_type>::value), ""); }