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