shithub: mc

ref: 65c3b339b547b49d1c1d11c56d86ca81f756e9be
dir: /test/union-extraarg.myr/

View raw version
use std
/*
should fail to compile becuse
we're constructing a union that
with too many arguments.
*/
type u = union
	`Foo
;;

const main = {
	`Foo 123
}