shithub: mc

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