]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/any/test/basic_any_cast_cv_failed.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / any / test / basic_any_cast_cv_failed.cpp
1 // Copyright 2006 Alexander Nasonov.
2 // Copyright Antony Polukhin, 2013-2022.
3 // Copyright Ruslan Arutyunyan, 2019-2021.
4 //
5 // Distributed under the Boost Software License, Version 1.0. (See
6 // accompanying file LICENSE_1_0.txt or copy at
7 // http://www.boost.org/LICENSE_1_0.txt)
8
9 #include <boost/any/basic_any.hpp>
10
11 int main() {
12 boost::anys::basic_any<> const a;
13 boost::any_cast<int&>(a);
14 }
15