github-159.cpp 553 B

12345678910111213141516
  1. /*=============================================================================
  2. Copyright (c) 2017 Kohei Takahashi
  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/fusion/container/vector/vector.hpp>
  7. #include <boost/type.hpp>
  8. int main()
  9. {
  10. boost::fusion::vector<int, float> v1;
  11. boost::fusion::vector<int, float> v2(v1);
  12. v1 = v2;
  13. }