```nim import pkg/union proc doThing(i: sink int) = discard i as union(int | bool) doThing(10) ``` Complains `Error: values of type <sink[int]> is not convertible to <union(bool | int)>`
Complains
Error: values of type <sink[int]> is not convertible to <union(bool | int)>