shithub: mc

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