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