shithub: mc

ref: 231f122bcbc9010decfaae7942916d7ce948767d
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}