shithub: mc

ref: 28284f54c9ac36296ad3c820e779c24fcfc6f550
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
}