| 82 | using __op_t = connect_result_t<_Sender, __spawn_receiver>; |
| 83 | |
| 84 | __spawn_state(_Alloc __alloc, _Sender&& __sndr, _Token __token) |
| 85 | : __spawn_state_base(__do_complete) |
| 86 | , __alloc_(std::move(__alloc)) |
| 87 | , __op_(connect(std::move(__sndr), __spawn_receiver(this))) |
| 88 | , __assoc_(__token.try_associate()) |
| 89 | {} |
| 90 | |
| 91 | void __run() noexcept |
| 92 | { |
nothing calls this directly
no test coverage detected