shithub: mc

ref: 61ba873d4db80af7b53b4e35b6d50b57d1f22e91
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
}