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