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