shithub: mc

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