| 948 | |
| 949 | template <class... _Args> |
| 950 | __impl_base(__task* __parent, std::in_place_t, _Args&&... __args) |
| 951 | noexcept(STDEXEC::__nothrow_constructible_from<_Base, _Args...>) |
| 952 | : __parent_{__parent} |
| 953 | , __base_(static_cast<_Args&&>(__args)...) |
| 954 | {} |
| 955 | }; |
| 956 | |
| 957 | template <class _Base> |
nothing calls this directly
no outgoing calls
no test coverage detected