| 72 | }; |
| 73 | |
| 74 | void Test(std::stop_token token, int i) |
| 75 | { |
| 76 | while (!token.stop_requested()) |
| 77 | { |
| 78 | std::println("Hello, {}", i); |
| 79 | std::this_thread::sleep_for(2ms); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | int main() |
| 84 | { |
nothing calls this directly
no outgoing calls
no test coverage detected