]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/any/test/basic_any_to_any.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / any / test / basic_any_to_any.cpp
CommitLineData
1e59de90
TL
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
9int main()
10{
11 boost::anys::basic_any<256, 16> bany = 10;
12 boost::any value;
13 value = bany;
14}
15