shithub: mc

ref: 77b41a0cc4e47ad0ab95f6144cd079d250e4b622
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
}