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