shithub: mc

ref: 0a7a934f544bdd4ad8784fe87d3e87d0e154ff59
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
}