shithub: mc

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