shithub: mc

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