2
0
mirror of https://github.com/boostorg/hof.git synced 2026-02-01 20:42:14 +00:00
Files
hof/test/identity.cpp
2014-07-28 23:43:41 -04:00

8 lines
167 B
C++

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