• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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-2020 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 
main()19 int main() {
20     boost::make_variant_over<boost::fusion::vector<int, char> >::type t;
21     (void)t;
22 }
23