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