#include #include "test.hpp" struct sum_f { template constexpr T operator()(T x, U y) const { return x+y; } }; static constexpr fit::infix_adaptor sum = {}; FIT_TEST_CASE() { FIT_TEST_CHECK(3 == (1 2)); FIT_STATIC_TEST_CHECK(3 == (1 2)); }