mirror of
https://github.com/boostorg/hof.git
synced 2026-01-23 05:32:13 +00:00
10 lines
211 B
C++
10 lines
211 B
C++
#include <fit/variadic.h>
|
|
#include "test.h"
|
|
|
|
typedef fit::variadic_adaptor<tuple_class> vard_class;
|
|
|
|
FIT_TEST_CASE()
|
|
{
|
|
FIT_TEST_CHECK(3 == vard_class()(2));
|
|
FIT_STATIC_TEST_CHECK(3 == vard_class()(2));
|
|
} |