Remove ill-formed ki_any test

This commit is contained in:
JamesJCode
2025-01-07 00:37:06 +00:00
parent 08f866fae1
commit 7e1d10a019
-3
View File
@@ -483,9 +483,6 @@ BOOST_AUTO_TEST_CASE( Construction_InPlace_2 )
{
auto a = any(std::in_place_type<any>, 5);
BOOST_CHECK( any_cast<int>(any_cast<any>(a)) == 5 );
auto b = any(std::in_place_type<any>, {1});
(void) any_cast<std::initializer_list<int>>(any_cast<any>(b));
}