shithub: mc

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