shithub: mc

ref: 4a95d9e52e8cb216f9ba963096097b4906aa49f0
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
}