shithub: mc

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