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