shithub: mc

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