ref: de38fba80d0e8ee4b95c4e2ee8cd89d5b114a4ba 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) }