shithub: mc

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