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