shithub: mc

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