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