shithub: mc

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