Added test for GitHub issue #159

This commit is contained in:
Kohei Takahashi
2017-11-23 22:27:59 +09:00
parent 33ce5701ae
commit 5fd8c36079
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,16 @@
/*=============================================================================
Copyright (c) 2017 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 <boost/fusion/container/vector/vector.hpp>
#include <boost/type.hpp>
int main()
{
boost::fusion::vector<int, float> v1;
boost::fusion::vector<int, float> v2(v1);
v1 = v2;
}