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