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