From 7e1d10a019c19ea86179f3f9bdcf68b0ee226ce0 Mon Sep 17 00:00:00 2001 From: JamesJCode <13408010-JamesJCode@users.noreply.gitlab.com> Date: Tue, 7 Jan 2025 00:36:48 +0000 Subject: [PATCH] Remove ill-formed ki_any test --- qa/tests/common/test_ki_any.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/qa/tests/common/test_ki_any.cpp b/qa/tests/common/test_ki_any.cpp index 63d7a5fc7d..78ba7c5bc9 100644 --- a/qa/tests/common/test_ki_any.cpp +++ b/qa/tests/common/test_ki_any.cpp @@ -483,9 +483,6 @@ BOOST_AUTO_TEST_CASE( Construction_InPlace_2 ) { auto a = any(std::in_place_type, 5); BOOST_CHECK( any_cast(any_cast(a)) == 5 ); - - auto b = any(std::in_place_type, {1}); - (void) any_cast>(any_cast(b)); }