| 286 | }; |
| 287 | |
| 288 | cobalt::generator<int> test_generator() |
| 289 | { |
| 290 | for (auto i = 1; i < 10; i++) |
| 291 | co_yield i; |
| 292 | co_return 10; |
| 293 | } |
| 294 | |
| 295 | cobalt::promise<int> test_promise() |
| 296 | { |
nothing calls this directly
no outgoing calls
no test coverage detected