shithub: mc

ref: 08442dd9c3426e2dbe598ef1f6fb10f2f67638aa
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
}