shithub: mc

ref: 645ac9298c8d9c7ffee3da6c849a389bcc9adcb2
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
}