shithub: mc

ref: a2352649c2a8f5937335a8c791f3581f52cd8d6f
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
}