diff --git a/test/bind_cpp20_test.cpp b/test/bind_cpp20_test.cpp index 021cbcb..dd236cd 100644 --- a/test/bind_cpp20_test.cpp +++ b/test/bind_cpp20_test.cpp @@ -31,7 +31,6 @@ int main() BOOST_TEST_EQ( boost::bind( std::bit_and(), 1, 2 )(), 0 ); BOOST_TEST_EQ( boost::bind( std::bit_or(), 1, 2 )(), 3 ); BOOST_TEST_EQ( boost::bind( std::bit_xor(), 1, 2 )(), 3 ); - BOOST_TEST_EQ( boost::bind( std::bit_not(), 1 )(), ~1 ); return boost::report_errors(); }