shithub: mc

ref: 286b40b5cc3bf80fdd2d9345dd3ea6c1abb06744
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))
}