shithub: mc

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