shithub: mc

ref: 50e781702cdfa9e0c4bcb5101b9dd516029a7b52
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
}