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

Function main

test/basic_tuple/construct.cpp:13–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11
12
13int main() {
14 constexpr hana::basic_tuple<> empty{}; (void)empty;
15
16 constexpr hana::basic_tuple<int, float> xs{1, 2.3f}; (void)xs;
17 constexpr auto ys = hana::basic_tuple<int, float>{1, 2.3f};
18 constexpr auto copy = ys; (void)copy;
19}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected