shithub: mc

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