shithub: mc

ref: 45f3240f3c65cef689f691bfac7be182aed9e2c2
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))
}