// Copyright 2016, 2020, 2024 Peter Dimov // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt #include #include #include template struct Wrap { struct type {}; }; int main() { using boost::mp11::mp_map_find; using boost::mp11::mp_list; using Int = Wrap::type; using Long = Wrap::type; using Map = mp_list< mp_list, mp_list >; BOOST_TEST_TRAIT_SAME( mp_map_find, mp_list ); BOOST_TEST_TRAIT_SAME( mp_map_find, mp_list ); BOOST_TEST_TRAIT_SAME( mp_map_find, void ); return boost::report_errors(); }