shithub: mc

ref: 09d82f137706f80e53cdb12b12cd0e52217aeb57
dir: /test/mkunion.myr/

View raw version
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)
}