shithub: mc

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