shithub: mc

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