diff --git a/test/mp_find.cpp b/test/mp_find.cpp index 21aeb26b..e0c0ab31 100644 --- a/test/mp_find.cpp +++ b/test/mp_find.cpp @@ -59,5 +59,16 @@ int main() BOOST_TEST_TRAIT_TRUE((std::is_same, mp_size_t<1>>)); } + { + using boost::mp11::mp_iota_c; + + int const N = 1089; + + using L = mp_iota_c; + using R = mp_find>; + + BOOST_TEST_TRAIT_TRUE((std::is_same>)); + } + return boost::report_errors(); }