shithub: mc

ref: 8e62e63f2e282f1b476d15c609d5f65525bca0cf
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
}