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