shithub: mc

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