shithub: mc

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