shithub: mc

ref: e2ca5299d6dbc0da053609361789274c02e3a6aa
dir: /test/mkunion.myr/

View raw version
/* checks that union creation works. exits with 0. */
type u = union
	`Some int
	`None
;;

const main = {
	var v

	v = `Some 123
	-> 0
}