diff --git a/test/Jamfile b/test/Jamfile index 87b4bf51..f9c71c71 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -121,6 +121,7 @@ project [ run sequence/tuple_make.cpp : : : : ] [ run sequence/tuple_misc.cpp : : : : ] [ run sequence/tuple_mutate.cpp : : : : ] + [ run sequence/tuple_nest.cpp : : : : ] [ run sequence/tuple_hash.cpp : : : : ] [ run sequence/tuple_tie.cpp : : : : ] [ run sequence/transform_view.cpp : : : : ] diff --git a/test/sequence/tuple_nest.cpp b/test/sequence/tuple_nest.cpp new file mode 100644 index 00000000..1d263da4 --- /dev/null +++ b/test/sequence/tuple_nest.cpp @@ -0,0 +1,19 @@ +/*============================================================================= + Copyright (C) 2015 Kohei Takahshi + + 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 + +#define FUSION_SEQUENCE tuple +#include "nest.hpp" + +int +main() +{ + test(); + return boost::report_errors(); +} +