shithub: mc

ref: b7d4386bf0a35245a2d8705d379aa68d56ea0dbe
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
}