shithub: mc

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