shithub: mc

ref: 9a5f51b12293227ab7559c11d8fa5bcf18e49302
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
}