| 17 | #include "test_impl.hpp" |
| 18 | |
| 19 | int main() { |
| 20 | int result = 0; |
| 21 | for (unsigned i = 0; i < 10000000; ++i) { |
| 22 | result += make_some_stacktrace1()[0].source_line(); |
| 23 | } |
| 24 | |
| 25 | std::cerr << "OK\nLines count " << result; |
| 26 | } |
nothing calls this directly
no test coverage detected