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