shithub: mc

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