| 21 | TEST_CASE("Tuple conversion to struct", "[core][conversion]") { |
| 22 | using namespace tuplet::literals; |
| 23 | struct Vals { |
| 24 | int a; |
| 25 | int b; |
| 26 | std::string c; |
| 27 | }; |
| 28 | |
| 29 | auto tup1 = tuplet::tuple {1, 2, std::string("Hello, world!")}; |
| 30 |
nothing calls this directly
no outgoing calls
no test coverage detected