shithub: mc

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