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