shithub: mc

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