shithub: mc

ref: 9021cc39e9db0ef9c433dda8b1513050d359a8eb
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
}