shithub: mc

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