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