shithub: mc

ref: f0107d3b7411afbe8e1e8a04b13de3b60a625d04
dir: /test/matchunion.myr/

View raw version
use std
/* checks that union matching works, at least on the key.
exits with 84. */
type u = union
	`Foo
	`Bar
	`Baz
	`Quux
;;

const main = {
	var v

	v = `Foo
	match v
	| `Bar:	std.exit(42)
	| `Baz:	std.exit(81)
	| `Foo:	std.exit(84)
	| `Quux:	std.exit(123)
	;;
}