shithub: mc

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