shithub: mc

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