union
union copied to clipboard
Anonymous unions in Nim
Bumps [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) from 2.0.0 to 3.0.1. Release notes Sourced from actions/upload-pages-artifact's releases. v3.0.1 Changelog Group tar's output to prevent it from messing up action logs @SilverRainZ (#94) Update README.md @uiolee...
Bumps [actions/deploy-pages](https://github.com/actions/deploy-pages) from 2.0.4 to 4.0.4. Release notes Sourced from actions/deploy-pages's releases. v4.0.4 Changelog Update api-client.js @lmammino (#295) fix typo: compatibilty -> compatibility @SimonSiefke (#298) Bump @actions/artifact from 2.0.1 to...
```nim import pkg/union proc doThing(i: sink int) = discard i as union(int | bool) doThing(10) ``` Complains `Error: values of type is not convertible to `