mirror of
https://github.com/boostorg/hof.git
synced 2026-01-23 17:42:40 +00:00
9 lines
191 B
C++
9 lines
191 B
C++
#include <fit/apply.h>
|
|
#include "test.h"
|
|
|
|
FIT_TEST_CASE()
|
|
{
|
|
FIT_STATIC_TEST_CHECK(fit::apply(binary_class(), 1, 2) == 3);
|
|
FIT_TEST_CHECK(fit::apply(binary_class(), 1, 2) == 3);
|
|
}
|