You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds a convenience for mapping Never outputs to other types (#340)
Adds a way to map a workflow's `Never` output type to a different type
without generating compiler warnings. Fixes#339
I like this solution because the natural inclination is to simply delete
the block containing unreachable code and that just works:
```diff
- .mapOutput { switch $0 {} }
+ .mapOutput()
```
I'm happy to add a test using this but the true validation is to
successfully build without warnings.
0 commit comments