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