]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/variant/test/test9.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / variant / test / test9.cpp
1 //-----------------------------------------------------------------------------
2 // boost-libs variant/test/test9.cpp source file
3 // See http://www.boost.org for updates, documentation, and revision history.
4 //-----------------------------------------------------------------------------
5 //
6 // Copyright (c) 2016-2019 Antony Polukhin
7 //
8 // Distributed under the Boost Software License, Version 1.0. (See
9 // accompanying file LICENSE_1_0.txt or copy at
10 // http://www.boost.org/LICENSE_1_0.txt)
11
12
13 // Test from https://github.com/boostorg/variant/pull/21
14
15 #include <boost/fusion/container/vector.hpp>
16 #include <boost/fusion/mpl.hpp>
17 #include <boost/variant/variant.hpp>
18
19 int main() {
20 boost::make_variant_over<boost::fusion::vector<int, char> >::type t;
21 (void)t;
22 }