shithub: mc

ref: 65c02369b7b2c94e3832bb2a333b98bca852ada6
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
}