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