]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/any/test/any_to_basic_any_rv.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / any / test / any_to_basic_any_rv.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<> bany;
12 bany = boost::any(10);
13}
14