shithub: mc

ref: 688b3b5a20b86796fbd92ca82e3fc80128bb5443
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
}