ref: 2ac916b131229d9cc1d44d10a408cb9f49c135f9 dir: /test/nestfn.myr/
use std /* checks that nested functions without environment capture work. should * exit with 42. */ const main = { const ret42 = { -> 42 } std.exit(ret42()) }