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