]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/any/test/basic_any_to_basic_any.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / any / test / basic_any_to_basic_any.cpp
diff --git a/ceph/src/boost/libs/any/test/basic_any_to_basic_any.cpp b/ceph/src/boost/libs/any/test/basic_any_to_basic_any.cpp
new file mode 100644 (file)
index 0000000..46ce078
--- /dev/null
@@ -0,0 +1,15 @@
+// Copyright (c) 2021-2022 Antony Polukhin
+//
+// Distributed under the Boost Software License, Version 1.0. (See accompanying
+// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt).
+
+#include <boost/any.hpp>
+#include <boost/any/basic_any.hpp>
+
+int main()
+{
+    boost::anys::basic_any<> bany;
+    boost::anys::basic_any<256, 32> another(10);
+    bany = another;
+}
+