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