shithub: mc

ref: 3a49659e6d6d1d0289b7b0501eb03f23d48e828f
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
}