shithub: mc

ref: 6476ae94e37b0a07578973bfc1615088dd62f0bf
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
}