shithub: mc

ref: 8a3e8add6e0180565312d1079395ad39de4d9ce3
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
}