shithub: mc

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