shithub: mc

ref: 7258536522dff99b77080fdc5a06a2a299b8ecdd
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
}