shithub: mc

ref: d975956a1a2a1b05e328247fc0f5ca841edc8e18
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
}