shithub: mc

ref: 2b1c13ce2d20ce2b4e68e1daf08a1679d94fe397
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
}