shithub: mc

ref: debe132462d524de672e982f5982cc5882d2490b
dir: /test/union.myr/

View raw version
type u = union
	`Some int
	`None
;;

const main = {
	var v : u

	v = `None
}