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