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