shithub: mc

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