mirror of
https://github.com/boostorg/hof.git
synced 2026-02-01 08:32:12 +00:00
9 lines
198 B
C++
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);
|
|
}
|