shithub: mc

ref: 1ef5877bce5a4fcbe6e68b00f1ba087384d6343c
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}