| 103 | // "User API" for the test code, allows starting the task and retrieving the result or exception |
| 104 | void resume() { if (handle && !handle.done()) handle.resume(); } |
| 105 | T get() { return handle.promise().future.get(); } |
| 106 | }; |
| 107 | |
| 108 | // Specialization for void |
no outgoing calls
no test coverage detected