shithub: mc

ref: 011368e3394ba7691d7f4f9ca61bebf82d53ecfc
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
}