shithub: mc

ref: 731dd8851a19c11f91d01bdc8c469c77d653a4ea
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
}