shithub: mc

ref: 3f5de2514eb4a90a8f7925bbeaf6dfdfb07debf8
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
}