/*============================================================================= Copyright (c) 2014,2018 Kohei Takahashi Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ #include #include #include #include #include #include int main() { { boost::fusion::vector v(1, 2, 3); boost::fusion::list l1 = v; boost::fusion::list l2; boost::fusion::move(std::move(v), l2); BOOST_TEST(l1 == l2); } return boost::report_errors(); }