shithub: mc

ref: 4f34933ae3e4dffaefb084081e8c5330dd864b94
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
}