shithub: mc

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