]> git.proxmox.com Git - ceph.git/blob - 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
1 // Copyright (c) 2021-2022 Antony Polukhin
2 //
3 // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt).
5
6 #include <boost/any.hpp>
7 #include <boost/any/basic_any.hpp>
8
9 int main()
10 {
11 boost::anys::basic_any<> bany;
12 boost::anys::basic_any<256, 32> another(10);
13 bany = another;
14 }
15