shithub: mc

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