mirror of
https://github.com/boostorg/hof.git
synced 2026-01-20 16:42:14 +00:00
9 lines
160 B
C++
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);
|
|
}
|