shithub: mc

ref: 6e944f5fe207cd0294eaa4cd023533771fd403d8
dir: /test/arityhigh.myr/

View raw version
use std
/* should fail because we call f with too many args */
const f = {a:int
	-> a
}

const main = {
	std.exit(f(1, 2, 3))
}