shithub: mc

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