shithub: mc

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

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

const main = {
	var v : u

	v = `None
}