| 93 | static int delay_us = 0; |
| 94 | |
| 95 | Awaitable<std::string> inplace_func(const std::string& input) { |
| 96 | Trace t("inplace_func"); |
| 97 | co_return input; |
| 98 | } |
| 99 | |
| 100 | Awaitable<double> inplace_func2() { |
| 101 | Trace t("inplace_func2"); |
no outgoing calls
no test coverage detected