mirror of
https://github.com/boostorg/hof.git
synced 2026-02-01 08:32:12 +00:00
8 lines
188 B
C++
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 );
|
|
} |