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