]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/conversion/test/implicit_cast.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / conversion / test / implicit_cast.cpp
index eaca42a839a47628cd6ef37d54fce8285ca9648a..ea56f66d8d8c0fc71ce1d10e0de158b7ce12a912 100644 (file)
@@ -34,5 +34,9 @@ int main()
     (void)f;
     (void)z;
 
+
+    BOOST_CONSTEXPR long value = boost::implicit_cast<long>(42);
+    BOOST_TEST(value == 42L);
+
     return boost::report_errors();
 }