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