shithub: mc

ref: 2e48449a7eff16d5e1c47938747f1b35c1440ee3
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
}