shithub: mc

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