shithub: mc

ref: 20cea781b95e1a6c1fa2f6cd2bb6c05ec9a4480d
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
}