// Copyright 2015 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 #include struct X {}; int main() { using boost::mp11::mp_identity; BOOST_TEST_TRAIT_TRUE((std::is_same::type, void const volatile>)); BOOST_TEST_TRAIT_TRUE((std::is_same::type, void()>)); BOOST_TEST_TRAIT_TRUE((std::is_same::type, int const[]>)); BOOST_TEST_TRAIT_TRUE((std::is_same::type, X>)); using boost::mp11::mp_identity_t; BOOST_TEST_TRAIT_TRUE((std::is_same, void const volatile>)); BOOST_TEST_TRAIT_TRUE((std::is_same, void()>)); BOOST_TEST_TRAIT_TRUE((std::is_same, int const[]>)); BOOST_TEST_TRAIT_TRUE((std::is_same, X>)); return boost::report_errors(); }