| 11 | #include <iostream> |
| 12 | |
| 13 | int main(int argc, char **argv) { |
| 14 | std::array<int, 2> a{0, 1}; |
| 15 | CLI::App app{"My app"}; |
| 16 | app.add_option("--a", a, "an array")->capture_default_str(); |
| 17 | app.parse(argc, argv); |
| 18 | |
| 19 | std::cout << "pass\n"; |
| 20 | return 0; |
| 21 | } |
nothing calls this directly
no test coverage detected