2
0
mirror of https://github.com/boostorg/hof.git synced 2026-02-01 08:32:12 +00:00
Files
hof/test/identity.cpp
2016-03-02 01:46:17 -06:00

9 lines
198 B
C++

#include <boost/fit/identity.hpp>
#include "test.hpp"
BOOST_FIT_TEST_CASE()
{
BOOST_FIT_STATIC_TEST_CHECK(boost::fit::identity(10) == 10);
BOOST_FIT_TEST_CHECK(boost::fit::identity(10) == 10);
}