MCPcopy Create free account
hub / github.com/boostorg/hana / main

Function main

test/basic_tuple/make.cpp:13–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11struct x { };
12
13int main() {
14 auto xs1 = hana::make<hana::basic_tuple_tag>(); (void)xs1;
15 auto xs2 = hana::make<hana::basic_tuple_tag>(x<0>{}); (void)xs2;
16 auto xs3 = hana::make<hana::basic_tuple_tag>(x<0>{}, x<1>{}); (void)xs3;
17 auto xs4 = hana::make<hana::basic_tuple_tag>(x<0>{}, x<1>{}, x<2>{}); (void)xs4;
18}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected