shithub: mc

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