shithub: mc

ref: 2dc7f1dc369c28ef9967e8f46248f33a8c99e0ad
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
}