shithub: mc

ref: 61843c7772ad1dfb1a8688ac02a5d8153a8c25ca
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
}