shithub: mc

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