// // Trivial test for core::demangled_name // // Copyright (c) 2014 Peter Dimov // // Distributed under the Boost Software License, Version 1.0. // See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt // #include #include template struct Y1 { }; int main() { typedef Y1 T; std::cout << boost::core::demangled_name( BOOST_CORE_TYPEID( T ) ); return 0; }