shithub: mc

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