2
0
mirror of https://github.com/boostorg/hof.git synced 2026-02-01 08:32:12 +00:00
Files
hof/test/args.cpp
2014-07-28 20:44:32 -04:00

8 lines
188 B
C++

#include <fit/args.h>
#include "test.h"
FIT_TEST_CASE()
{
static_assert(fit::args<3>(1,2,3,4,5) == 3, "static args test failed");
FIT_TEST_CHECK( fit::args<3>(1,2,3,4,5) == 3 );
}