2
0
mirror of https://github.com/boostorg/hof.git synced 2026-01-24 18:02:20 +00:00
Files
hof/test/identity.cpp

8 lines
155 B
C++

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