mirror of
https://github.com/boostorg/hof.git
synced 2026-01-22 05:12:39 +00:00
8 lines
160 B
C++
8 lines
160 B
C++
#include <fit/decorate.hpp>
|
|
#include "test.hpp"
|
|
|
|
FIT_TEST_CASE()
|
|
{
|
|
FIT_TEST_CHECK(fit::decorate(fit::always(1))(fit::always(1))(fit::always(1))(5) == 1);
|
|
}
|