| 113 | __state_->__eptr_ = static_cast<_Error&&>(__err); |
| 114 | } |
| 115 | else if constexpr (__same_as<_Error, std::error_code>) |
| 116 | { |
| 117 | __state_->__eptr_ = std::make_exception_ptr(std::system_error(__err)); |
| 118 | } |
| 119 | else |
| 120 | { |
| 121 | __state_->__eptr_ = std::make_exception_ptr(static_cast<_Error&&>(__err)); |
no outgoing calls
no test coverage detected