shithub: mc

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