shithub: mc

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