ref: 0556b63c0c444d2d77b270c7d51beb7e94f0d30a 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()) }