shithub: mc

ref: d6d20b1c17e02c66a3ec89c96e3f35b011c59056
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
}