shithub: mc

ref: 5cd0a14dc99289449cd8a3a5bd39fb1bdad21662
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
}