shithub: mc

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