ref: db048ccb7e6b80bcd2f5cf60f409d9b31a21dafe dir: /test/aritylow.myr/
use std /* should fail because we call f with too few args */ const f = {a:int, b:int, c:int -> a + b + c } const main = { std.exit(f(1, 2)) }