shithub: mc

ref: 314b2c1651a2c946a3d9e3ccdd9fff739e603b2b
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
}