shithub: mc

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