2
0
mirror of https://github.com/boostorg/hof.git synced 2026-01-24 18:02:20 +00:00
Files
hof/test/flip.cpp
2015-08-24 19:04:30 -05:00

10 lines
216 B
C++

#include <fit/flip.h>
#include <fit/placeholders.h>
#include "test.h"
FIT_TEST_CASE()
{
FIT_TEST_CHECK(3 == fit::flip(fit::_ - fit::_)(2, 5));
FIT_STATIC_TEST_CHECK(3 == fit::flip(fit::_ - fit::_)(2, 5));
}