| 56 | {} |
| 57 | |
| 58 | constexpr void start() noexcept |
| 59 | { |
| 60 | if (STDEXEC::get_stop_token(STDEXEC::get_env(__rcvr_)).stop_requested()) |
| 61 | { |
| 62 | STDEXEC::set_stopped(static_cast<_Receiver&&>(__rcvr_)); |
| 63 | } |
| 64 | else |
| 65 | { |
| 66 | STDEXEC::start(__child_op_); |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | _Receiver __rcvr_; |
| 71 | __child_op_t __child_op_; |
nothing calls this directly
no test coverage detected