shithub: mc

ref: 67ae2844ebf6a215b8b48351c0c5ab32c7cb4652
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
}