mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-20 07:42:11 +02:00
added failing test as per https://github.com/boostorg/fusion/pull/38
This commit is contained in:
@ -56,5 +56,13 @@ int main() {
|
|||||||
BOOST_TEST(as_deque(make_deque(make_deque(1))) == make_deque(make_deque(1)));
|
BOOST_TEST(as_deque(make_deque(make_deque(1))) == make_deque(make_deque(1)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
deque<> xs;
|
||||||
|
BOOST_TEST(
|
||||||
|
as_deque(push_front(xs, make_vector(1, '2', 3.3f))) ==
|
||||||
|
make_deque(make_vector(1, '2', 3.3f))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return boost::report_errors();
|
return boost::report_errors();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user