shithub: mc

ref: 9673e11f4a1c9d3376a74d444e7c2e21ad65ebf2
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
}