shithub: mc

ref: 286b40b5cc3bf80fdd2d9345dd3ea6c1abb06744
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
}