shithub: mc

ref: a8a5638f3cd024f627ce3fd64aac94fd8fcf9e6f
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
}