shithub: mc

ref: 8fda8a0adbb44f4e63bb86256d9f56700d79f301
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
}