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