shithub: mc

ref: 151ac13992ccc9c1b02c3fa32a36c2588edcc2f5
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))
}