2
0
mirror of https://github.com/boostorg/hof.git synced 2026-01-20 16:42:14 +00:00
Files
hof/test/identity.cpp
2016-01-17 23:50:01 -06:00

9 lines
160 B
C++

#include <fit/identity.hpp>
#include "test.hpp"
FIT_TEST_CASE()
{
FIT_STATIC_TEST_CHECK(fit::identity(10) == 10);
FIT_TEST_CHECK(fit::identity(10) == 10);
}