shithub: mc

ref: 2c27e157e7fcdc82a6f010dd63d1ee433b86fe1d
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
}