shithub: mc

ref: 02f19e5b2e6a94199d6eb9a97417e1feb3b2d0aa
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
}