diff options
Diffstat (limited to 'src/boost/libs/fusion/test/sequence/github-159.cpp')
-rw-r--r-- | src/boost/libs/fusion/test/sequence/github-159.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/boost/libs/fusion/test/sequence/github-159.cpp b/src/boost/libs/fusion/test/sequence/github-159.cpp new file mode 100644 index 000000000..e21d80c5c --- /dev/null +++ b/src/boost/libs/fusion/test/sequence/github-159.cpp @@ -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; +} |