shithub: mc

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