shithub: mc

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