blob: 4e1fd7532b91c25a56eac484b5536dd02bbce7b3 [file] [log] [blame]
// Copyright 2018 Peter Dimov.
// Distributed under the Boost Software License, Version 1.0.
#include <boost/core/typeinfo.hpp>
#include <boost/core/lightweight_test.hpp>
boost::core::typeinfo const & get_typeid_int();
int main()
{
boost::core::typeinfo const & ti = BOOST_CORE_TYPEID( int );
boost::core::typeinfo const & tf = BOOST_CORE_TYPEID( float );
boost::core::typeinfo const & ti2 = get_typeid_int();
BOOST_TEST( ti2 == ti );
BOOST_TEST( ti2 != tf );
BOOST_TEST( !ti2.before( ti ) );
BOOST_TEST( !ti.before( ti2 ) );
BOOST_TEST( ti2.before( tf ) != tf.before( ti2 ) );
return boost::report_errors();
}