shithub: mc

ref: 0ffaabebcf294f1488a26f84c9f6ff3621d8319d
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
}