shithub: mc

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