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