ref: 9676f65ff1660a8ebc47b384ba056717e6cde056 dir: /test/mkunion.myr/
use std /* checks that union creation works. exits with 0. */ type u = union `Some int `None ;; const main = { var v v = `Some 123 std.exit(0) }