]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/variant2/test/variant_eq_ne.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / variant2 / test / variant_eq_ne.cpp
index b2fc19dc021b705e331fd4644cd227fe9db8cac6..87e2ecba57f42fd0f90f136ffdade1714ecd0bd9 100644 (file)
@@ -88,5 +88,12 @@ int main()
         BOOST_TEST_NOT( v1 != v2 );
     }
 
+    {
+        variant<monostate> v1, v2;
+
+        BOOST_TEST( v1 == v2 );
+        BOOST_TEST_NOT( v1 != v2 );
+    }
+
     return boost::report_errors();
 }