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