shithub: mc

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