shithub: mc

ref: 36d8051e6fb675aff71d37c9ab79e93239e1521f
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
}