shithub: mc

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